9 lines
204 B
Rust
9 lines
204 B
Rust
fn f() {}
|
|
|
|
fn main() {
|
|
let x: u8 = unsafe {
|
|
*std::mem::transmute::<fn(), *const u8>(f) //~ ERROR tried to dereference a function pointer
|
|
};
|
|
panic!("this should never print: {}", x);
|
|
}
|