blob: 920fb51abb644caaa12b4e5bda6da8b6e3638c59 [file] [log] [blame]
fn main() {
fn f(_: (i32, i32)) {}
let g = unsafe { std::mem::transmute::<fn((i32, i32)), fn()>(f) };
g() //~ ERROR: calling a function with fewer arguments than it requires
}