16 lines
236 B
C
16 lines
236 B
C
|
#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
|