mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
15 lines
339 B
Swift
15 lines
339 B
Swift
// RUN: %target-typecheck-verify-swift
|
|
// REQUIRES: concurrency
|
|
|
|
// Make sure the import succeeds
|
|
import _Concurrency
|
|
|
|
// Make sure the type shows up (including under its old name, for
|
|
// short-term source compatibility)
|
|
@available(SwiftStdlib 5.5, *)
|
|
extension PartialAsyncTask {
|
|
}
|
|
@available(SwiftStdlib 5.5, *)
|
|
extension UnownedJob {
|
|
}
|