parse_if.cvc 98 B

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