int foo (int a) { return a; } void main () { void b = foo(1); # Error on line 6 col 13: Expected int but given void. }