mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02: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 {}
|
|
}
|
|
}
|