Avatar
@swift-main @swift-6.1-dev @swift-6.0.3 class NonSendable{} protocol P2 { subscript(_ a: sending NonSendable) -> sending NonSendable { get async } } @MainActor struct S: P2 { subscript(_ a: sending NonSendable) -> sending NonSendable { get async { a } } } (edited)