blob: 7961b58597c4a68ef70ac1ad4f9b8d21bacdcd47 [file] [log] [blame]
// revisions: mir thir
// [thir]compile-flags: -Z thir-unsafeck
#![feature(coroutines)]
fn main() {
let _ = || {
*(1 as *mut u32) = 42;
//~^ ERROR dereference of raw pointer is unsafe
yield;
};
}