Avatar
Avatar
kntk
@swift-main @swift-6.0.3 -swift-version 6 -strict-concurrency=complete func f0(_ x: () async -> Void) { f1(x) f2(x) f3(x) } func f1(_ x: @Sendable () async -> Void) { f0(x) f2(x) f3(x) } func f2(_ x: @MainActor () async -> Void) { f0(x) f1(x) f3(x) } func f3(_ x: @MainActor @Sendable () async -> Void) { f0(x) f1(x) f2(x) } (edited)
swiftNightly BOT 8/29/2024 10:48 AM
exit status: 1 with <stdin>:2:8: error: passing non-sendable parameter 'x' to function expecting a @Sendable closure 1 | func f0(_ x: () async -> Void) { | `- note: parameter 'x' is implicitly non-sendable (edited)
1.03 KB