YouCompleteMe/cpp/llvm/tools/clang/test/PCH/method-redecls.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

19 lines
295 B
Objective-C

// RUN: %clang_cc1 -x objective-c %s -emit-pch -o %t
// RUN: %clang_cc1 -x objective-c %s -emit-pch -o %t -D IMPL
// Avoid infinite loop because of method redeclarations.
@interface Foo
-(void)meth;
-(void)meth;
-(void)meth;
@end
#ifdef IMPL
@implementation Foo
-(void)meth { }
@end
#endif