Avatar
Avatar
lovee
@swift-main // import SwiftUI class NonSendable { var bool: Bool = .random() } func makeNonSendable() async -> NonSendable { NonSendable() } struct Demo: View { @State private var bool: Bool? nonisolated func foo() async { let ns = await makeNonSendable() Task { @MainActor in bool = ns.bool } } var body: some View { Text("Hello, World!") // .task { // NG // let ns = await makeNonSendable() // bool = ns.bool // } .task { // OK await foo() } } }
swiftNightly BOT 2/7/2025 4:08 AM
exit status: 1 with <stdin>:12:6: error: unknown attribute 'State' 10 | 11 | struct Demo: View {
1.07 KB