mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-13 03:02:38 +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() {
|
|
}
|