7 lines
91 B
Go
7 lines
91 B
Go
package runtime
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var ErrStackOverflow = errors.New("stack overflow")
|