2016-08-27 02:44:46 -05:00
|
|
|
fn main() {
|
2020-03-21 06:52:23 -05:00
|
|
|
fn f() {}
|
2016-06-14 03:34:54 -05:00
|
|
|
|
2016-07-06 10:55:05 -05:00
|
|
|
let g = unsafe {
|
2016-06-14 03:34:54 -05:00
|
|
|
std::mem::transmute::<fn(), fn(i32)>(f)
|
|
|
|
};
|
|
|
|
|
2020-03-21 06:52:23 -05:00
|
|
|
g(42) //~ ERROR calling a function with more arguments than it expected
|
2016-06-14 03:34:54 -05:00
|
|
|
}
|