blob: 35429041c9d13b87b10b8a6ab409385baf8da538 [file] [log] [blame]
package stub
func main() {
check(&callExpr{}) //@suggestedfix("&", "quickfix", "")
}
func check(err error) {
if err != nil {
panic(err)
}
}
type callExpr struct{}