Avatar
@swift-main -Xfrontend -enable-experimental-concurrency struct Test { func test() async { async let x = 42 // Immutable value 'x' may only be initialized once print(await x) print(await x) } }