1 // Don't crash. 2 3 // RUN: cp %S/modified-header-crash.h %t.h 4 // RUN: %clang_cc1 -DCAKE -x c-header %t.h -emit-pch -o %t 5 // RUN: echo >> %t.h 6 // RUN: not %clang_cc1 %s -include-pch %t -fsyntax-only 7 8 void f(void) { 9 foo = 3; 10 } 11