blob: ceef769c7ff37426a523c9535e6823ef5d125457 [file] [log] [blame]
-- suggestedfix_stub_call_expr_4_8 --
package stub
func main() {
check(&callExpr{}) //@suggestedfix("&", "quickfix", "")
}
func check(err error) {
if err != nil {
panic(err)
}
}
type callExpr struct{}
// Error implements error.
func (*callExpr) Error() string {
panic("unimplemented")
}