mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
55 lines
1.4 KiB
Swift
55 lines
1.4 KiB
Swift
// RUN: %target-run-simple-swift(-Xfrontend -enable-experimental-concurrency -parse-as-library) | %FileCheck %s
|
|
|
|
// REQUIRES: executable_test
|
|
// REQUIRES: concurrency
|
|
|
|
// rdar://76038845
|
|
// UNSUPPORTED: use_os_stdlib
|
|
|
|
// XFAIL: OS=windows-msvc
|
|
|
|
struct Boom: Error {}
|
|
struct IgnoredBoom: Error {}
|
|
|
|
@available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
|
|
func echo(_ i: Int) async -> Int { i }
|
|
@available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
|
|
func boom() async throws -> Int { throw Boom() }
|
|
|
|
@available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
|
|
func test_taskGroup_throws_rethrows() async {
|
|
do {
|
|
let got = try await withThrowingTaskGroup(of: Int.self, returning: Int.self) { group in
|
|
group.spawn { await echo(1) }
|
|
group.spawn { await echo(2) }
|
|
group.spawn { try await boom() }
|
|
|
|
do {
|
|
while let r = try await group.next() {
|
|
print("next: \(r)")
|
|
}
|
|
} catch {
|
|
// CHECK: error caught and rethrown in group: Boom()
|
|
print("error caught and rethrown in group: \(error)")
|
|
throw error
|
|
}
|
|
|
|
print("should have thrown")
|
|
return 0
|
|
}
|
|
|
|
print("Expected error to be thrown, but got: \(got)")
|
|
} catch {
|
|
// CHECK: rethrown: Boom()
|
|
print("rethrown: \(error)")
|
|
}
|
|
}
|
|
|
|
|
|
@available(macOS 9999, iOS 9999, watchOS 9999, tvOS 9999, *)
|
|
@main struct Main {
|
|
static func main() async {
|
|
await test_taskGroup_throws_rethrows()
|
|
}
|
|
}
|