Task { for await ... { self // リーク😨 } }
self.task = Task { [weak self] in for await ... { guard let self else { break } self // 👏 } }