llvm-for-llvmta/tools/clang/test/CoverageMapping/Inputs/code.h

14 lines
133 B
C
Raw Normal View History

2022-04-25 13:02:35 +02:00
// Some code for the middle of a program
x = x;
if (x == 0) {
x = 1;
} else {
x = 2;
}
if (true) {
x = x;
} else {
x = x;
}