1
0
mirror of https://github.com/mgechev/revive.git synced 2024-11-24 08:32:22 +02:00
revive/testdata/unhandled-error-w-ignorelist.go

20 lines
316 B
Go

package fixtures
import (
"fmt"
"os"
)
func unhandledError1(a int) (int, error) {
return a, nil
}
func unhandledError2() error {
_, err := unhandledError1(1)
unhandledError1(1)
fmt.Fprintf(nil, "") // MATCH /Unhandled error in call to function fmt.Fprintf/
os.Chdir("..")
_ = os.Chdir("..")
return err
}