rust/tests/compile-fail/undefined_byte_read.rs

7 lines
220 B
Rust
Raw Normal View History

fn main() {
let v: Vec<u8> = Vec::with_capacity(10);
let undef = unsafe { *v.get_unchecked(5) };
2018-10-19 04:50:17 -05:00
let x = undef + 1; //~ ERROR attempted to read undefined bytes
panic!("this should never print: {}", x);
}