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