Avatar
@swift-main @swift-5.4.3 -Xfrontend -enable-experimental-concurrency func f() async throws -> Int { 1 } func g() async throws -> Int { let a = try await f() let b = await try f() return a + b }