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