We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7ff16b commit 573ad76Copy full SHA for 573ad76
test/ModuleInterface/distributed-actor-generic.swift
@@ -0,0 +1,12 @@
1
+// RUN: %empty-directory(%t)
2
+// RUN: %target-swift-emit-module-interface(%t/Library.swiftinterface) %s -module-name Library
3
+// RUN: %target-swift-typecheck-module-from-interface(%t/Library.swiftinterface) -module-name Library
4
+// RUN: %FileCheck %s < %t/Library.swiftinterface
5
+
6
+// REQUIRES: distributed
7
8
+import Distributed
9
10
+@available(SwiftStdlib 6.0, *)
11
+public distributed actor DAG<ActorSystem> where ActorSystem: DistributedActorSystem<any Codable> {
12
+}
0 commit comments