mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
8b8cce16bf
Fix #84837.
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
|
|
}
|