brintos

brintos / llvm-project-archived public Read only

0
0
Text · 644 B · e0ce838 Raw
22 lines · c
1#pragma clang diagnostic ignored "-Wtautological-compare"2#include "pragma_disable_warning.h"3 4int main (int argc, const char * argv[])5{6#pragma clang diagnostic push7#pragma clang diagnostic ignored "-Wdeprecated-declarations"8  int x=0;9#pragma clang diagnostic pop10 11  return x;12}13 14#pragma clang diagnostic ignored "-Wmisleading-indentation"15void foo(void) { int b=0; while (b==b); }16 17// RUN: env CINDEXTEST_EDITING=1 CINDEXTEST_FAILONERROR=1 c-index-test -test-load-source-reparse 5 local \18// RUN: -I%S/Inputs \19// RUN:   %s -Wall -Werror | FileCheck %s20 21// CHECK: pragma-diag-reparse.c:8:7: VarDecl=x:8:7 (Definition) Extent=[8:3 - 8:10]22