mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 17:24:06 +00:00
9 lines
183 B
Rust
9 lines
183 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
|
||
|
}
|