9 lines
168 B
C
9 lines
168 B
C
|
@interface MyBase : NSObject
|
||
|
{
|
||
|
#if !__OBJC2__
|
||
|
int maybe_used; // The 1.0 runtime needs to have backed properties...
|
||
|
#endif
|
||
|
}
|
||
|
@property int propertyMovesThings;
|
||
|
@end
|