summaryrefslogtreecommitdiffstats
path: root/clang/test/Import/if-stmt/Inputs/F.cpp
blob: a7062c94ea76f3e1287e01ee9b865fef5f6028eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
void f() {
  if (true)
    return;

  if (int j = 3)
    return;

  if (int j; true)
    return;

  if (true)
    return;
  else
    return;

  if (true) {
    return;
  } else {
    return;
  }
}
OpenPOWER on IntegriCloud