4 lines
112 B
Text
4 lines
112 B
Text
void main () {
|
|
int foo = 1312;
|
|
bool bar = foo; # Error on line 3 col 15: Expected bool but given int.
|
|
}
|