Allow resolving headers from a PCH even after headers+PCH were moved to another path.
[clang.git] / test / Parser / objc-type-printing.m
blob9bbdac98bcbddf05e3b417b2559bc645320aa8a5
1 // RUN: %clang_cc1 -ast-print %s
3 @protocol P1 @end
4 @protocol P2 @end
5 @protocol P3 @end
7 @interface INTF 
8 - (INTF<P1>*) METH;
9 @end
11 void foo()
13         INTF *pintf;
14         INTF<P1>* p1;
15         INTF<P1, P1>* p2;
16         INTF<P1, P3>* p3;
17         INTF<P1, P3, P2>* p4;
18         INTF<P2,P2, P3, P1>* p5;