package main import "errors" // Need to show solution func process() error { return errors.New("error") } func main() { process() }