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