blob: dbd18088f274010f95f755ce9570487a77222c03 [file] [log] [blame]
John Stilescb400082021-09-23 11:07:32 -04001// Expect 3 errors
Brian Osman01f322c2021-01-14 11:40:56 -05002
3void discard_stmt() { discard; }
4
5int do_loop(int x) { do { x++; } while(x < 1); return x; }
6
7int while_loop(int x) { while (x < 1) { x++; } return x; }