CAP/MiniC/TP04/tests/students/base/test_comp_bool.c

16 lines
236 B
C
Raw Normal View History

2024-10-21 23:10:10 +02:00
#include "printlib.h"
int main() {
bool x, y;
if (x <= y) {
println_string("ok");
}
return 0;
}
// SKIP TEST EXPECTED
// EXITCODE 2
// EXPECTED
// In function main: Line 6 col 6: invalid type for non numeric type: boolean