blob: 2d5f92fcbc1ee435a25271e666f7a859327007a0 [file] [log] [blame]
// RUN: clang -fsyntax-only %s
@interface foo
- (int)meth;
@end
@implementation foo
- (int) meth { return [self meth]; }
@end