2016-06-13 12:29:01 +02:00
|
|
|
fn f() {}
|
|
|
|
|
2016-06-13 14:27:05 +02:00
|
|
|
fn main() {
|
|
|
|
let x: i32 = unsafe {
|
2016-06-13 12:29:01 +02:00
|
|
|
*std::mem::transmute::<fn(), *const i32>(f) //~ ERROR: tried to dereference a function pointer
|
2016-06-13 14:27:05 +02:00
|
|
|
};
|
|
|
|
panic!("this should never print: {}", x);
|
2016-06-13 12:29:01 +02:00
|
|
|
}
|