blob: 14ce3acdfd2228d77427bf7ef6b54371044f56c5 [file] [log] [blame]
Argyrios Kyrtzidisb40034c2011-10-14 06:48:06 +00001// RUN: %clang_cc1 -x objective-c -emit-pch -o %t
2
3// Avoid infinite loop because of method redeclarations.
4
5@interface Foo
6-(void)meth;
7-(void)meth;
8-(void)meth;
9@end
10
11@implementation Foo
12-(void)meth { }
13@end