Skip to content

Commit 950ff3e

Browse files
authored
[Concurrency] Remove * from backdeployed
This should have been a compile time error but seems it wasn't caught. Remove the * from the backDeployed as this is not something which makes sense and would break adopter projects.
1 parent 9b8b5eb commit 950ff3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/Concurrency/TaskGroup.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ import Swift
6464
/// For tasks that need to handle cancellation by throwing an error,
6565
/// use the `withThrowingTaskGroup(of:returning:body:)` method instead.
6666
@available(SwiftStdlib 5.1, *)
67-
@backDeployed(before: SwiftStdlib 6.0, *)
67+
@backDeployed(before: SwiftStdlib 6.0)
6868
@inlinable
6969
public func withTaskGroup<ChildTaskResult, GroupResult>(
7070
of childTaskResultType: ChildTaskResult.Type,

0 commit comments

Comments
 (0)