Remove building with NOCRYPTO option
[minix.git] / external / bsd / llvm / dist / clang / test / Index / pragma-diag-reparse.c
blob71d0618d709285937705c00532875f4daee2fdb1
1 #pragma clang diagnostic ignored "-Wtautological-compare"
2 #include "pragma_disable_warning.h"
4 int main (int argc, const char * argv[])
6 #pragma clang diagnostic push
7 #pragma clang diagnostic ignored "-Wdeprecated-declarations"
8 int x=0;
9 #pragma clang diagnostic pop
11 return x;
14 void foo() { int b=0; while (b==b); }
16 // RUN: env CINDEXTEST_EDITING=1 CINDEXTEST_FAILONERROR=1 c-index-test -test-load-source-reparse 5 local \
17 // RUN: -I%S/Inputs \
18 // RUN: %s -Wall -Werror | FileCheck %s
20 // CHECK: pragma-diag-reparse.c:8:7: VarDecl=x:8:7 (Definition) Extent=[8:3 - 8:10]