mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
11 lines
188 B
Rust
11 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)
|
|
}
|
|
}
|