7 lines
200 B
Rust
7 lines
200 B
Rust
fn main() {
|
|
let v: Vec<u8> = Vec::with_capacity(10);
|
|
let undef = unsafe { *v.get_unchecked(5) }; //~ ERROR uninitialized
|
|
let x = undef + 1;
|
|
panic!("this should never print: {}", x);
|
|
}
|