# error: goroutine leak detected (channel send blocked)

- **ID:** `go/goroutine-leak-channel-block`
- **Domain:** go
- **Category:** runtime_error
- **Verification:** ai_generated
- **Fix Rate:** 80%

## Root Cause

A goroutine is blocked sending to a channel that no other goroutine reads from.

## Version Compatibility

| Version | Status | Introduced | Deprecated |
|---------|--------|------------|------------|
| 1.19 | active | — | — |
| 1.22 | active | — | — |

## Workarounds

1. **** (95% success)
   ```
   go func() { ch <- data }(); result := <-ch
   ```
2. **** (90% success)
   ```
   select { case ch <- data: default: /* handle timeout */ }
   ```

## Dead Ends

- **** — Only postpones the problem; buffer fills up eventually. (60% fail)
- **** — Sleep does not fix the root cause; may cause indefinite blocking. (90% fail)
