blob: 9d02b6a8af578cc1892604c6139b076cf65dca94 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// 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
|