1 // error-pattern: mismatched types
2 
f(x: isize)3 fn f(x: isize) { }
4 
main()5 fn main() { let i: (); i = f(()); }
6