Avatar
@swift-5.6.3 actor A { func foo() {} func bar() { Task { foo() } Task { [weak self] in self?.foo() } } }