Avatar
@swift-5.5.3 -warn-concurrency func f2() async -> Int { 42 } class C {} struct S { let c = C() var value = 0 func f() async { let _ = await f2() print(value) } } (edited)