fn main() { fn f() {} let g = unsafe { std::mem::transmute::(f) }; g(42) //~ ERROR tried to call a function with sig fn() through a function pointer of type fn(i32) }