Clang Project

clang_source_code/test/Import/if-stmt/Inputs/F.cpp
1void f() {
2  if (true)
3    return;
4
5  if (int j = 3)
6    return;
7
8  if (int j; true)
9    return;
10
11  if (true)
12    return;
13  else
14    return;
15
16  if (true) {
17    return;
18  } else {
19    return;
20  }
21}
22