mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 05:45:59 +00:00
13 lines
230 B
Rust
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;
|
|
};
|
|
}
|