brintos

brintos / llvm-project-archived public Read only

0
0
Text · 197 B · a7062c9 Raw
22 lines · 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  else14    return;15 16  if (true) {17    return;18  } else {19    return;20  }21}22