1
0
mirror of https://github.com/mgechev/revive.git synced 2024-11-21 17:16:40 +02:00
revive/testdata/unhandled_error.go
2024-11-11 19:31:18 +01: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
}