18 lines
258 B
C
18 lines
258 B
C
#include "printlib.h"
|
|
|
|
int main() {
|
|
int x, y;
|
|
|
|
while (x) {
|
|
y = 5;
|
|
x = x+1;
|
|
}
|
|
println_int(y);
|
|
return 0;
|
|
}
|
|
|
|
// SKIP TEST EXPECTED
|
|
// EXITCODE 2
|
|
// EXPECTED
|
|
// In function main: Line 6 col 2: invalid type for non boolean as condition: integer
|