6 lines
172 B
Text
6 lines
172 B
Text
void main () {
|
|
if (1) { # Error on line 2 col 8: Expected bool but given int.
|
|
# Requiert le type bool, pas de convertion implicite
|
|
return;
|
|
}
|
|
}
|