Allow resolving headers from a PCH even after headers+PCH were moved to another path.
[clang.git] / test / SemaObjCXX / parameters.mm
blobaab1fbda4dd8b4c3a6f78eef01f0399bbcdfdb30
1 // RUN: %clang_cc1 -verify %s
3 @interface A
4 @end
6 template<typename T>
7 struct X0 {
8   void f(T); // expected-error{{interface type 'A' cannot be passed by value}}
9 };
11 X0<A> x0a; // expected-note{{instantiation}}