go
range_error
official
true
panic: runtime error: index out of range
ID: go/panic-runtime-error-index-out-of-range
80%Fix Rate
95%Confidence
0Evidence
Version Compatibility
| Version | Status | Introduced | Deprecated | Notes |
|---|---|---|---|---|
| 1.x | active | — | — | — |
Root Cause
Accessing a slice or array with an index >= len(slice). Check the index bounds before access.
generic