mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
12 lines
237 B
Swift
12 lines
237 B
Swift
@available(SwiftStdlib 5.5, *)
|
|
@globalActor public final class MeowActor {
|
|
public static let shared = _Impl()
|
|
|
|
public actor _Impl {
|
|
nonisolated
|
|
public func enqueue(_ job: UnownedJob) {
|
|
// DOES NOTHING! :)
|
|
}
|
|
}
|
|
}
|