mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
12 lines
193 B
Rust
12 lines
193 B
Rust
//@ run-rustfix
|
|
#[allow(unused_mut)]
|
|
fn test() {
|
|
let w: &mut [isize];
|
|
w[5] = 0; //~ ERROR [E0381]
|
|
|
|
let mut w: &mut [isize];
|
|
w[5] = 0; //~ ERROR [E0381]
|
|
}
|
|
|
|
fn main() { test(); }
|