Files
swift-mirror/test/ModuleInterface/Inputs/OldActor.swiftinterface
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

16 lines
324 B
Plaintext

// swift-interface-format-version: 1.0
// swift-module-flags: -enable-library-evolution -module-name OldActor
import Swift
import _Concurrency
#if compiler(>=5.3) && $Actors
@available(SwiftStdlib 5.1, *)
public actor Monk {
public init()
deinit
public func method()
// Lacks an unownedExecutor property
}
#endif