freebsd-dev/test/SemaObjC/property-redundant-decl-accessor.m

19 lines
284 B
Mathematica
Raw Normal View History

// RUN: %clang_cc1 -fsyntax-only -Werror -verify -Wno-objc-root-class %s
2009-06-02 17:58:47 +00:00
@interface MyClass {
const char *_myName;
}
@property const char *myName;
- (const char *)myName;
- (void)setMyName:(const char *)name;
@end
@implementation MyClass
@synthesize myName = _myName;
@end