rust/src/test/compile-fail/liveness-use-in-index-lvalue.rs

7 lines
125 B
Rust
Raw Normal View History

fn test() {
let w: [int]/~;
w[5] = 0; //! ERROR use of possibly uninitialized variable: `w`
}
fn main() { test(); }