mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
11 lines
230 B
Swift
11 lines
230 B
Swift
@globalActor public final class MeowActor {
|
|
public static let shared = _Impl()
|
|
|
|
public actor class _Impl {
|
|
@actorIndependent
|
|
public func enqueue(partialTask: PartialAsyncTask) {
|
|
// DOES NOTHING! :)
|
|
}
|
|
}
|
|
}
|