rust/src/test/ui/for-loop-while/loop-label-shadowing.rs

12 lines
167 B
Rust
Raw Normal View History

// run-pass
// Issue #12512.
// pretty-expanded FIXME #23616
fn main() {
let mut foo = Vec::new();
2015-01-31 11:20:46 -06:00
'foo: for i in &[1, 2, 3] {
foo.push(*i);
}
}