llvm-for-llvmta/tools/clang/test/Import/if-stmt/Inputs/F.cpp

22 lines
197 B
C++
Raw Normal View History

2022-04-25 13:02:35 +02:00
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;
}
}