You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
316 B

// 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