Home | History | Annotate | Download | only in Index
      1 // RUN: env CINDEXTEST_EDITING=1 c-index-test -test-load-source-reparse 5 local %s | FileCheck %s
      2 
      3 int main (int argc, const char * argv[])
      4 {
      5 #pragma clang diagnostic push
      6 #pragma clang diagnostic ignored "-Wdeprecated-declarations"
      7   int x;
      8 #pragma clang diagnostic pop
      9 
     10   return 0;
     11 }
     12 
     13 // CHECK: pragma-diag-reparse.c:7:7: VarDecl=x:7:7 (Definition) Extent=[7:3 - 7:8]
     14