2017-09-16 04:39:51 -05:00
|
|
|
// This should fail even without validation
|
|
|
|
// compile-flags: -Zmir-emit-validate=0
|
|
|
|
|
2016-06-13 07:27:05 -05:00
|
|
|
fn main() {
|
|
|
|
let v: Vec<u8> = Vec::with_capacity(10);
|
|
|
|
let undef = unsafe { *v.get_unchecked(5) };
|
2018-07-11 14:07:17 -05:00
|
|
|
let x = undef + 1; //~ ERROR: error
|
|
|
|
//~^ NOTE attempted to read undefined bytes
|
2016-06-13 07:27:05 -05:00
|
|
|
panic!("this should never print: {}", x);
|
|
|
|
}
|