Files
swift-mirror/test/PrintAsObjC/Inputs/propertyWithOddGetterSetterNames.h
Varun Gandhi d4bafdf9fa Add minimal test case for rdar://problem/55519276.
We are dropping the getter and setter names we get from Objective-C.
This leads to a runtime crash. Oops.
2019-10-06 06:57:50 -07:00

6 lines
147 B
Objective-C

#import <Foundation/Foundation.h>
@protocol PowerProtocol <NSObject>
@property (nonatomic, getter=getPower, setter=setPower:) int64_t level;
@end