// RUN: %target-swift-frontend -strict-concurrency=complete -dump-ast %s | %FileCheck %s // REQUIRES: concurrency, OS=macosx @available(SwiftStdlib 5.1, *) func f(s: S) async throws { // CHECK-NOT: next(isolation:) // CHECK: next() for try await x in s { } }