You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
295 B
19 lines
295 B
// 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
|