blob: ffd5129c8e5ae620fdbaa6119eba7f6230c476fb [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -fsyntax-only -Werror -verify %s
Fariborz Jahanian91b51a92008-12-09 22:43:22 +00002
3@interface MyClass {
4 const char *_myName;
5}
6
7@property const char *myName;
8
9- (const char *)myName;
10- (void)setMyName:(const char *)name;
11
12@end
13
14@implementation MyClass
15
16@synthesize myName = _myName;
17
18@end