8 lines
173 B
Plaintext
8 lines
173 B
Plaintext
|
// Expect 3 errors
|
||
|
|
||
|
void discard_stmt() { discard; }
|
||
|
|
||
|
int do_loop(int x) { do { x++; } while(x < 1); return x; }
|
||
|
|
||
|
int while_loop(int x) { while (x < 1) { x++; } return x; }
|