rust/src/test/ui/issues/issue-45087-unreachable-unsafe.rs
2018-12-25 21:08:33 -07:00

6 lines
105 B
Rust

fn main() {
return;
*(1 as *mut u32) = 42;
//~^ ERROR dereference of raw pointer is unsafe
}