mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +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(); }
|