hanchenye-llvm-project/clang/test/PCH/modified-header-crash.c

11 lines
225 B
C

// Don't crash.
// RUN: cp %S/modified-header-crash.h %t.h
// RUN: %clang_cc1 -DCAKE -x c-header %t.h -emit-pch -o %t
// RUN: echo >> %t.h
// RUN: not %clang_cc1 %s -include-pch %t -fsyntax-only
void f(void) {
foo = 3;
}