llvm-for-llvmta/tools/clang/test/PCH/method-redecls.m
Nils Hölscher 7f403f4f1e added clang
2022-04-25 13:02:35 +02: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