mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
13 lines
360 B
Rust
13 lines
360 B
Rust
// revisions: mir thir
|
|
// [thir]compile-flags: -Z thir-unsafeck
|
|
|
|
fn f(p: *const u8) -> u8 {
|
|
let _ = *p; //~ ERROR dereference of raw pointer is unsafe
|
|
let _: u8 = *p; //~ ERROR dereference of raw pointer is unsafe
|
|
_ = *p; //~ ERROR dereference of raw pointer is unsafe
|
|
return *p; //~ ERROR dereference of raw pointer is unsafe
|
|
}
|
|
|
|
fn main() {
|
|
}
|