rust/tests/ui/borrowck/borrowck-use-in-index-lvalue.fixed

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
213 B
Rust
Raw Normal View History

2024-04-10 20:01:20 +00:00
//@ 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(); }