.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.1.1-0.20210319172145-bda8f5cee399 / go / ssa / interp / testdata / src / errors / errors.go
1 package errors
2
3 func New(text string) error { return errorString{text} }
4
5 type errorString struct{ s string }
6
7 func (e errorString) Error() string { return e.s }