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