rust/tests/ui/coroutine/issue-45729-unsafe-in-coroutine.rs
2023-10-20 21:14:02 +00:00

13 lines
230 B
Rust

// 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;
};
}