mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
The blocking nature of these APIs means that the closures passed to them do not actually escape the concurrency domain of the caller. Remove the implicit `@Sendable`.
37 lines
903 B
Swift
37 lines
903 B
Swift
// RUN: %target-typecheck-verify-swift -disable-availability-checking %import-libdispatch -warn-concurrency
|
|
// REQUIRES: concurrency
|
|
// REQUIRES: libdispatch
|
|
|
|
import Dispatch
|
|
|
|
// Tests the inference of @_unsafeSendable and @MainActor when working with
|
|
// the Dispatch library, and specifically, DispatchQueue.
|
|
@MainActor func onlyOnMainActor() { }
|
|
|
|
func testMe() {
|
|
DispatchQueue.main.async {
|
|
onlyOnMainActor() // okay, due to inference of @MainActor-ness
|
|
}
|
|
}
|
|
|
|
func testUnsafeSendableInMainAsync() async {
|
|
var x = 5
|
|
DispatchQueue.main.async {
|
|
x = 17 // expected-error{{mutation of captured var 'x' in concurrently-executing code}}
|
|
}
|
|
print(x)
|
|
}
|
|
|
|
func testUnsafeSendableInAsync(queue: DispatchQueue) async {
|
|
var x = 5
|
|
queue.async {
|
|
x = 17 // expected-error{{mutation of captured var 'x' in concurrently-executing code}}
|
|
}
|
|
|
|
queue.sync {
|
|
x = 17 // okay
|
|
}
|
|
|
|
print(x)
|
|
}
|