mirror of
https://github.com/apple/swift.git
synced 2026-02-27 18:26:24 +01:00
10 lines
175 B
Swift
10 lines
175 B
Swift
// RUN: %target-swift-emit-sil -sil-verify-all -verify %s
|
|
|
|
// REQUIRES: concurrency
|
|
|
|
func foo(_ xs: consuming AsyncStream<Int>) async {
|
|
_ = {
|
|
for await _ in xs {}
|
|
}
|
|
}
|