blob: 8817787ddbe914928a53f782cdc6f6c6a2ab6a74 [file] [log] [blame]
// RUN: clang -fsyntax-only -Werror -verify %s
@interface MyClass {
const char *_myName;
}
@property const char *myName;
- (const char *)myName;
- (void)setMyName:(const char *)name;
@end
@implementation MyClass
@synthesize myName = _myName;
@end