[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git] / test / SemaObjC / writable-property-in-superclass.m
blobbbd1f16cffc0bb62fc695b831fad7455711d20ff
1 // RUN: %clang_cc1  -fsyntax-only -verify %s
3 @interface MessageStore
4 @property (assign, readonly) int P;
5 @end
7 @interface MessageStore (CAT)
8 @property (assign) int P;
9 @end
11 @interface  NeXTMbox : MessageStore
12 @end
14 @implementation NeXTMbox
15 - (void) Meth { self.P = 1; }
16 @end