parse_while.cvc 103 B

123456789
  1. void foo() {
  2. while (true) {
  3. foo();
  4. foo();
  5. }
  6. while (true)
  7. foo();
  8. }