Avatar
Avatar
Iceman
@swift-6.0.3 -swift-version 6 func takeMetatype<T>(_: (T.Type) -> (T) -> () -> ()) -> T { } class NonSendable { static func foo() { let _: NonSendable = takeMetatype { $0.bar } } func bar() { } }
exit status: 1 with <unknown>:0: error: implicit capture of 'self' requires that 'NonSendable' conforms to `Sendable` <stdin>:4:7: note: class 'NonSendable' does not conform to the 'Sendable' protocol 2 | } 3 | 4 | class NonSendable { | `- note: class 'NonSendable' does not conform to the 'Sendable' protocol 5 | static func foo() { 6 | let _: NonSendable = takeMetatype { $0.bar }