9 lines
175 B
Rust
9 lines
175 B
Rust
#![feature(box_syntax)]
|
|
|
|
fn main() {
|
|
let x = box 42;
|
|
unsafe {
|
|
let _f = std::mem::transmute::<Box<i32>, fn()>(x); //~ ERROR expected a function pointer
|
|
}
|
|
}
|