clang-1/test/Sema/method-def-1.m

11 строки
129 B
Objective-C

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