mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
16 lines
324 B
Plaintext
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.5, *)
|
|
public actor Monk {
|
|
public init()
|
|
deinit
|
|
public func method()
|
|
// Lacks an unownedExecutor property
|
|
}
|
|
#endif
|
|
|