brintos

brintos / llvm-project-archived public Read only

0
0
Text · 295 B · 9d02b6a Raw
19 lines · plain
1// RUN: %clang_cc1 -x objective-c %s -emit-pch -o %t2// RUN: %clang_cc1 -x objective-c %s -emit-pch -o %t -D IMPL3 4// Avoid infinite loop because of method redeclarations.5 6@interface Foo7-(void)meth;8-(void)meth;9-(void)meth;10@end11 12#ifdef IMPL13 14@implementation Foo15-(void)meth { }16@end17 18#endif19