blob: cc9295a9bc014896fb680634f115dfc8eec1c3b0 [file] [log] [blame]
Fariborz Jahanian1147c5e2009-12-14 17:36:25 +00001// RUN: clang -cc1 -fsyntax-only -verify %s
Fariborz Jahanian50efe042009-04-06 16:59:10 +00002
3@interface MessageStore
4@property (assign, readonly) int P;
5@end
6
7@interface MessageStore (CAT)
8@property (assign) int P;
9@end
10
11@interface NeXTMbox : MessageStore
12@end
13
14@implementation NeXTMbox
15- (void) Meth { self.P = 1; }
16@end
17