rust/tests/compile-fail/undefined_byte_read.rs
2020-03-19 08:25:08 +01:00

7 lines
229 B
Rust

fn main() {
let v: Vec<u8> = Vec::with_capacity(10);
let undef = unsafe { *v.get_unchecked(5) };
let x = undef + 1; //~ ERROR this operation requires initialized memory
panic!("this should never print: {}", x);
}