# Continuation остаётся без resume

RuleID: concurrency.lost-continuation-resume@1.0.0
Status: recovery-required
Catalog snapshot: 4558458d

Accepted subset is bounded. If required evidence is incomplete, the affected result is unknown.

## V-ASYNC-06 — Continuation остаётся без resume

Не возобновлённая continuation навсегда оставляет ожидающую задачу suspended. Типичный источник — пропущенная ветка ошибки.

Status: recovery-required

Scope notes: Source producer требует восстановления и квалификации. Если необходимые факты не получены, результат — unknown, а не «ошибки нет».

### Before (illustrative)

```swift
await withCheckedContinuation { c in
    api { value in
        if let value { c.resume(returning: value) }
    }
}
```

### After (illustrative)

```swift
await withCheckedContinuation { c in
    api { value in c.resume(returning: value) }
}
```

Boundary: Неизвестная callback cardinality; легальная передача владельцу

---
Language: ru
Canonical: https://docs.swift-analyzer.com/catalog/concurrency.lost-continuation-resume/
Source revision: 4558458d
