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