Avatar
@swift-main -Xfrontend -enable-experimental-concurrency struct Test { func foo() async -> Int { 42 } func test() async { async let x = foo() print(await x) print(await x) } }