CAP/MiniC/TP03/tests/students/base/test_add_boolean.c

11 lines
198 B
C
Raw Normal View History

2024-10-10 11:37:00 +02:00
#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