blob: 8c8f33b560580d74246246abe3c27a5754eafebc [file] [log] [blame]
Fariborz Jahanian1147c5e2009-12-14 17:36:25 +00001// RUN: clang -cc1 -fsyntax-only -verify %s
Fariborz Jahanianb072b712009-04-03 21:51:32 +00002
3@protocol CYCdef
4- (int)name;
5@end
6
7@interface JSCdef <CYCdef> {
8 int name;
9}
10
11@property (assign) int name;
12@end
13
14@implementation JSCdef
15@synthesize name;
16@end
17