xref: /aosp_15_r20/external/clang/test/CoverageMapping/Inputs/code.h (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // Some code for the middle of a program
2 
3 x = x;
4 if (x == 0) {
5   x = 1;
6 } else {
7   x = 2;
8 }
9 if (true) {
10   x = x;
11 } else {
12   x = x;
13 }
14