Files
swift-mirror/test/ModuleInterface/Inputs/MeowActor.swift
Evan Wilde 8b80331c3d Updating tests to use actor
This patch updates the `actor class` spelling to `actor` in almost all
of the tests. There are places where I verify that we sanely handle
`actor` as an attribute though. These include:

 - test/decl/class/actor/basic.swift
 - test/decl/protocol/special/Actor.swift
 - test/SourceKit/CursorInfo/cursor_info_concurrency.swift
 - test/attr/attr_objc_async.swift
 - test/ModuleInterface/actor_protocol.swift
2021-02-10 08:09:13 -08:00

11 lines
224 B
Swift

@globalActor public final class MeowActor {
public static let shared = _Impl()
public actor _Impl {
@actorIndependent
public func enqueue(partialTask: PartialAsyncTask) {
// DOES NOTHING! :)
}
}
}