brintos

brintos / llvm-project-archived public Read only

0
0
Text · 431 B · f6c6c7f Raw
26 lines · c
1#define cool2 3#if defined(cool)4 5#if defined(really_cool)6#endif // really_cool7 8#elif defined(hot)9// hot10 11 12#endif // trailing comment13 14#ifndef cool15#ifndef uncool16 17int probably_hot = 1;18 19#endif // uncool20#endif // cool21 22// RUN: env CINDEXTEST_SHOW_SKIPPED_RANGES=1 c-index-test -test-annotate-tokens=%s:1:1:16:1 %s | FileCheck %s23// CHECK: Skipping: [5:1 - 6:7]24// CHECK: Skipping: [8:1 - 12:7]25// CHECK: Skipping: [14:1 - 20:7]26