mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This includes a bunch of fixes. It is not exhaustive but fit my time boxed time period I set aside to look at this today. A quick non-exhaustive list: 1. I removed unnecessary verify-additional-prefix lines. 2. Split tests with typechecker error and non-typechecker error components. 3. Removed complete- lines that we used when testing w/without send non sednable. 4. Translated complete-and-tns- lines to be just complete- since they are just testing strict-concurrency=complete and we are not testing complete without send non sendable anymore.
37 lines
1.5 KiB
Swift
37 lines
1.5 KiB
Swift
// RUN: %target-swift-frontend -emit-sil -o /dev/null -verify %s
|
|
// RUN: %target-swift-frontend -emit-sil -o /dev/null -verify %s -strict-concurrency=targeted
|
|
// RUN: %target-swift-frontend -emit-sil -o /dev/null -verify %s -verify-additional-prefix complete- -strict-concurrency=complete
|
|
|
|
// REQUIRES: concurrency
|
|
|
|
// https://github.com/apple/swift/issues/59909
|
|
struct Future<T> { }
|
|
|
|
extension Future {
|
|
@preconcurrency
|
|
func flatMap<NewValue>(_ callback: @escaping @Sendable (T) -> Future<NewValue>) -> Future<NewValue> { // #1
|
|
fatalError()
|
|
}
|
|
|
|
@preconcurrency
|
|
public func flatMapErrorThrowing(_ callback: @escaping @Sendable (Error) throws -> T) -> Future<T> {
|
|
fatalError("")
|
|
}
|
|
}
|
|
|
|
extension Future {
|
|
@available(*, deprecated, message: "")
|
|
func flatMap<NewValue>(file: StaticString = #file, line: UInt = #line, _ callback: @escaping (T) -> Future<NewValue>) -> Future<NewValue> { // #2
|
|
// expected-complete-note @-1 {{parameter 'callback' is implicitly non-Sendable}}
|
|
return self.flatMap(callback)
|
|
// expected-complete-warning @-1 {{passing non-Sendable parameter 'callback' to function expecting a '@Sendable' closure}}
|
|
}
|
|
|
|
@inlinable
|
|
@available(*, deprecated, message: "Please don't pass file:line:, there's no point.")
|
|
public func flatMapErrorThrowing(file: StaticString = #file, line: UInt = #line, _ callback: @escaping (Error) throws -> T) -> Future<T> {
|
|
return self.flatMapErrorThrowing(callback)
|
|
// expected-complete-warning @-1 {{function call causes an infinite recursion}}
|
|
}
|
|
}
|