11 lines
198 B
C
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
|