CAP/MiniC/TP04/tests/students/base/test_add_boolean.c
2024-10-21 23:10:10 +02:00

11 lines
198 B
C

#include "printlib.h"
int main() {
println_bool(true + false);
return 0;
}
// EXITCODE 2
// EXPECTED
// In function main: Line 4 col 15: invalid type for additive operands: boolean and boolean