2018-10-17 09:55:59 -05:00
|
|
|
#[repr(u32)]
|
2020-09-20 05:02:04 -05:00
|
|
|
#[derive(Debug)]
|
2018-10-17 09:55:59 -05:00
|
|
|
enum Bool { True }
|
|
|
|
|
|
|
|
fn evil(x: &mut Bool) {
|
|
|
|
let x = x as *mut _ as *mut u32;
|
2020-06-20 04:48:42 -05:00
|
|
|
unsafe { *x = 44; } // out-of-bounds enum tag
|
2018-10-17 09:55:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut x = Bool::True;
|
|
|
|
evil(&mut x);
|
2020-09-20 05:02:04 -05:00
|
|
|
let y = x; // reading this ought to be enough to trigger validation
|
2020-07-05 06:43:20 -05:00
|
|
|
//~^ ERROR encountered 0x0000002c at .<enum-tag>, but expected a valid enum tag
|
2020-09-20 05:02:04 -05:00
|
|
|
println!("{:?}", y); // make sure it is used (and not optimized away)
|
2018-10-17 09:55:59 -05:00
|
|
|
}
|