YouCompleteMe/cpp/llvm/tools/clang/test/PCH/chain-predecl.m
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

17 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