f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
16 lines
316 B
Objective-C
16 lines
316 B
Objective-C
// RUN: %clang_cc1 -emit-pch -o %t1 %S/chain-predecl.h -x objective-c
|
|
// RUN: %clang_cc1 -emit-pch -o %t2 %s -x objective-c -include-pch %t1
|
|
|
|
// Test predeclarations across chained PCH.
|
|
@interface Foo
|
|
-(void)bar;
|
|
@end
|
|
@interface Boom
|
|
-(void)bar;
|
|
@end
|
|
@protocol Pro
|
|
-(void)baz;
|
|
@end
|
|
@protocol Kaboom
|
|
-(void)baz;
|
|
@end
|