// RUN: clang-cc -emit-pch -o %t -relocatable-pch -isysroot %S/libroot %S/libroot/usr/include/reloc.h // RUN: clang-cc -include-pch %t -isysroot %S/libroot %s -verify // RUN: not clang-cc -include-pch %t %s #include int x = 2; // expected-error{{redefinition}} int y = 5; // expected-error{{redefinition}} // expected-note{{previous definition}} // expected-note{{previous definition}}