diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/06-goto.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/06-goto.c b/test/06-goto.c index 075467c..a0f2457 100644 --- a/test/06-goto.c +++ b/test/06-goto.c @@ -22,6 +22,11 @@ e: x <<= 1; goto b; } +void dummy() { + for (;;) { + ; + } +} int printf(const char *, ...); int main(int n) { |