mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
11 lines
213 B
Rust
11 lines
213 B
Rust
//@ run-rustfix
|
|
#[allow(unused_mut)]
|
|
fn test() {
|
|
let w: &mut [isize] = &mut [];
|
|
w[5] = 0; //~ ERROR [E0381]
|
|
|
|
let mut w: &mut [isize] = &mut [];
|
|
w[5] = 0; //~ ERROR [E0381]
|
|
}
|
|
|
|
fn main() { test(); }
|