blob: a5ae402353652d605012257218b9fcd142204cf3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// 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 'int foobar;' >> %t.h
// RUN: not %clang_cc1 %s -include-pch %t -fsyntax-only
void f(void) {
foo = 3;
}
|