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