mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
12 lines
213 B
Rust
12 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(); }
|