This repository has been archived on 2022-12-27. You can view files and clone it, but cannot push or open issues or pull requests.
compilateurMIPS/tests/36_if-str.test

7 lines
203 B
Text
Raw Normal View History

2022-12-22 19:15:42 +01:00
void main () {
if ("mettez20svp") { # Error on line 2 col 20: Expected bool, int but given str.
# les strings ne sont pas valides pour les conditions
return;
}
}