You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/Distributed/Runtime/distributed_actor_init_local.swift
+20-3Lines changed: 20 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,10 @@
8
8
// UNSUPPORTED: use_os_stdlib
9
9
// UNSUPPORTED: back_deployment_runtime
10
10
11
+
// FIXME(distributed): 5.7 branches seem to be missing something; as `main + 32bit watch` does not crash on DA usage with the local testing actor system, but 5.7 does.
12
+
// rdar://92952551
13
+
// UNSUPPORTED: OS=watchos
14
+
11
15
import Distributed
12
16
13
17
enumMyError:Error{
@@ -21,8 +25,8 @@ distributed actor PickATransport1 {
21
25
}
22
26
23
27
distributedactorPickATransport2{
24
-
init(other:Int,thesystem:FakeActorSystem)async{
25
-
self.actorSystem =thesystem
28
+
init(other:Int,theSystem:FakeActorSystem)async{
29
+
self.actorSystem =theSystem
26
30
}
27
31
}
28
32
@@ -90,6 +94,15 @@ distributed actor MaybeAfterAssign {
0 commit comments