summaryrefslogtreecommitdiff
path: root/tests/exec/if1.cpp
blob: 67d32fb91dfc744c14e7a7b2d7b560d7ab08bff8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>

int main() {
  if (1)
    if (0)
      ;
    else {
      if (1 == 2)
        std::cout << (0/0);
      else
        std::cout << "hello world\n";
    }
}