2016-06-13 05:29:01 -05:00
|
|
|
fn f() {}
|
|
|
|
|
2016-06-13 07:27:05 -05:00
|
|
|
fn main() {
|
2018-10-08 06:35:54 -05:00
|
|
|
let x: u8 = unsafe {
|
2019-04-21 06:18:05 -05:00
|
|
|
*std::mem::transmute::<fn(), *const u8>(f) //~ ERROR tried to dereference a function pointer
|
2016-06-13 07:27:05 -05:00
|
|
|
};
|
|
|
|
panic!("this should never print: {}", x);
|
2016-06-13 05:29:01 -05:00
|
|
|
}
|