blob: a11bf5aff7dc5b9bf89275a3bf1a323af06d05da [file] [log] [blame]
// RUN: %clang_cc1 -x objective-c -emit-pch -o %t
// RUN: %clang_cc1 -x objective-c -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