ox

The Ox programming language, compiler and tools (WIP)
Log | Files | Refs | README | LICENSE

ex7.ox (166B)


      1 // infinite loop break test
      2 
      3 int main() {
      4     int a = 1;
      5     for(;;) {
      6         if (a == 1) break;
      7         continue 7; // TODO fix this test to fail semantics
      8     }
      9 }