mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
9 lines
159 B
Rust
9 lines
159 B
Rust
//@ run-rustfix
|
|
fn main() {
|
|
let v = &mut Vec::<i32>::new();
|
|
for _ in v {} //~ ERROR E0277
|
|
|
|
let v = &mut [1u8];
|
|
for _ in v {} //~ ERROR E0277
|
|
}
|