Files
swift-mirror/test/stdlib/Concurrency.swift
Doug Gregor 9b0266cf6a [Concurrency] Stub out an experimental concurrency support library.
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.
2020-07-29 16:32:27 -07:00

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 {
}