summaryrefslogtreecommitdiffstats
path: root/clang/test/Import/for-stmt/Inputs/F.cpp
blob: e93e35dd6b79bbb60349642625800875696286e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
void f() {
  for (;;)
    ;
  for (int i = 0;;)
    continue;
  for (; bool j = false;)
    continue;
  for (int i = 0; i != 0; ++i) {
    i++;
  }
}
OpenPOWER on IntegriCloud