Avatar
Avatar
Iceman
@swift-6.0.3 @swift-5.10.1 actor A { var stored = 0 var fooHandler: ((isolated A, _ value: String) -> Int)? func foo(value: String) -> Int { if let fooHandler { return fooHandler(self, value) } return 0 } } func withActor<A: Actor>(_ `actor`: isolated A, _ run: (isolated A) -> ()) { run(`actor`) } extension Actor { @discardableResult func apply(_ run: (isolated Self) -> Void) -> Self { run(self) return self } } func f() async { let a = A() await withActor(a) { $0.fooHandler = { (self, arg0) in return /* withActor */ self.stored } } await a.apply { $0.fooHandler = { (self, arg0) in return /* apply */ self.stored } } } (edited)
exit status: 1 with <stdin>:29:41: error: actor-isolated property 'stored' can not be referenced from a non-isolated context return /* withActor */ self.stored ^ <stdin>:2:9: note: property declared here var stored = 0 ^ (edited)