1
0
mirror of https://github.com/mgechev/revive.git synced 2025-01-10 03:17:11 +02:00
revive/fixtures/unhandled-error.go
SalvadorC 8aa0cd8bd4 unhandled-error (new rule) (#124)
* unhandled-error (new rule)

* better failure msg

* encapsulates error type detection
2019-04-27 19:23:17 -07:00

20 lines
443 B
Go

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