mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
10 lines
188 B
Rust
10 lines
188 B
Rust
// run-pass
|
|
// Test that regionck uses the right memcat for patterns in for loops
|
|
// and doesn't ICE.
|
|
|
|
|
|
fn main() {
|
|
for &&x in Some(&0_usize).iter() {
|
|
assert_eq!(x, 0)
|
|
}
|
|
}
|