mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
The experimental concurrency model will require a supporting runtime and possibly end-user-visible library constructs. Introduce a stub of such a library, enabled by a new `build-script` option `--enable-experimental-concurrency`, so we have a place to put this work.
10 lines
181 B
Swift
10 lines
181 B
Swift
// RUN: %target-typecheck-verify-swift
|
|
// REQUIRES: concurrency
|
|
|
|
// Make sure the import succeeds
|
|
import _Concurrency
|
|
|
|
// Make sure the type shows up
|
|
extension PartialAsyncTask {
|
|
}
|