mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
These show up specifically when someone forms a keypath to an ObjC property in a category. They're no-ops from the perspective of DFE but the code has to intentionally skip the case if it wants to avoid the subsequent llvm_unreachable. rdar://34913689
15 lines
187 B
Objective-C
15 lines
187 B
Objective-C
@import Foundation;
|
|
|
|
@interface ObjCFoo
|
|
|
|
@property(readonly) NSString *_Nonnull objcProp;
|
|
|
|
@end
|
|
|
|
|
|
@interface ObjCFoo (Extras)
|
|
|
|
@property(readonly) NSString *_Nonnull objcExtraProp;
|
|
|
|
@end
|