blob: 6723b6f6f2531cfbaf780d659e9de5f70d73be91 [file] [log] [blame]
Sebastian Redl0b17c612010-08-13 00:28:03 +00001// RUN: %clang_cc1 -emit-pch -o %t1 %S/chain-predecl.h -x objective-c
Douglas Gregorb5af8432011-08-25 22:54:01 +00002// RUN: %clang_cc1 -emit-pch -o %t2 %s -x objective-c -include-pch %t1
Sebastian Redl0b17c612010-08-13 00:28:03 +00003
4// Test predeclarations across chained PCH.
5@interface Foo
6-(void)bar;
7@end
8@interface Boom
9-(void)bar;
10@end
11@protocol Pro
12-(void)baz;
13@end
14@protocol Kaboom
15-(void)baz;
16@end