2016-08-27 01:44:46 -06:00
|
|
|
fn main() {
|
2016-06-14 10:34:54 +02:00
|
|
|
fn f() {}
|
|
|
|
|
2016-07-06 17:55:05 +02:00
|
|
|
let g = unsafe {
|
2016-06-14 10:34:54 +02:00
|
|
|
std::mem::transmute::<fn(), fn(i32)>(f)
|
|
|
|
};
|
|
|
|
|
2017-03-02 13:11:33 +01:00
|
|
|
g(42) //~ ERROR tried to call a function with sig fn() through a function pointer of type fn(i32)
|
2016-06-14 10:34:54 +02:00
|
|
|
}
|