9 lines
87 B
Go
9 lines
87 B
Go
package main
|
|
|
|
import "errors"
|
|
|
|
func main() {
|
|
err := errors.New("error")
|
|
panic(err)
|
|
}
|