2013-09-28 04:21:48 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
|
2012-10-19 20:44:48 +08:00
|
|
|
// expected-no-diagnostics
|
2010-11-18 03:41:23 +08:00
|
|
|
// rdar://8673791
|
2011-09-01 06:24:06 +08:00
|
|
|
// rdar://9943851
|
2010-11-18 03:41:23 +08:00
|
|
|
|
|
|
|
@interface I {
|
|
|
|
}
|
|
|
|
|
2011-09-01 06:24:06 +08:00
|
|
|
@property int IVAR;
|
2010-11-18 03:41:23 +08:00
|
|
|
- (int) OK;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation I
|
2011-09-28 07:39:40 +08:00
|
|
|
- (int) Meth { return _IVAR; }
|
2010-11-18 03:41:23 +08:00
|
|
|
- (int) OK { return self.IVAR; }
|
|
|
|
@end
|