Files
swift-mirror/test/Concurrency/Runtime/actor_detach.swift
Karoy Lorentey 47956908b7 [Concurrency] SwiftStdlib 5.5 ⟹ SwiftStdlib 5.1 (usages)
The concurrency runtime now deploys back to macOS 10.15, iOS 13.0, watchOS 6.0, tvOS 13.0, which corresponds to the 5.1 release of the stdlib.

Adjust macro usages accordingly.
2021-10-28 14:36:36 -07:00

53 lines
917 B
Swift

// RUN: %target-run-simple-swift( -Xfrontend -disable-availability-checking) | %FileCheck %s
// REQUIRES: executable_test
// REQUIRES: concurrency
// REQUIRES: foundation
// REQUIRES: concurrency_runtime
// UNSUPPORTED: back_deployment_runtime
import Foundation
@available(SwiftStdlib 5.1, *)
actor Manager {
static var shared = Manager()
func manage() async -> Int {
print("manage")
return 0
}
func other() async -> Int{
print("other")
return 0
}
}
@available(SwiftStdlib 5.1, *)
func test() {
detach {
let x = await Manager.shared.manage()
print(x)
}
detach {
let x = await Manager.shared.other()
print(x)
}
}
if #available(SwiftStdlib 5.1, *) {
test()
sleep(30)
} else {
print("manage")
print("0")
print("other")
print("0")
}
// CHECK-DAG: manage
// CHECK-DAG: 0
// CHECK-DAG: other
// CHECK-DAG: 0