Files
swift-mirror/test/SILGen/Inputs/objc_bridging_nsurl.h
Michael Gottesman f84f48eb5a [silgen] Make SwitchCaseFullExpr use an ArgumentScope instead of just a Scope.
Otherwise, if we move in a formal access cleanup value into switch emission
using a cleanup cloner, we will improperly have a formal access cleanup that
will be invalidated by a normal Scope which violates SILGen invariants. Also in
a certain sense the bindings performed by SILGenPattern that do this type of
forwarding are arguments in a certain sense so it seems reasonable to do this.

<rdar://problem/70736924>
2020-11-12 23:31:13 -08:00

9 lines
116 B
Objective-C

@import Foundation;
@interface ObjCKlass : NSObject
@property(nonatomic, copy, nullable) NSURL *outputURL;
@end