Avatar
@swift-5.9.2 actor Foo { var values: [Int] = [] func f() { Task { await useSome(values[0]) } } } func useSome(_ v: Int) async {}