llvm-project/lldb/test/foundation/my-base.m

11 lines
189 B
Objective-C

#import <Foundation/Foundation.h>
#import "my-base.h"
@implementation MyBase
#if __OBJC2__
@synthesize propertyMovesThings;
#else
@synthesize propertyMovesThings = maybe_used;
#endif
@end