honnef.co/go/tools@v0.4.7/staticcheck/testdata/src/example.com/CheckTestMainExit-4_go14/CheckTestMainExit-4.go (about) 1 package pkg 2 3 import ( 4 "os" 5 "testing" 6 ) 7 8 func helper() { os.Exit(1) } 9 10 func TestMain(m *testing.M) { //@ diag(`should call os.Exit`) 11 // FIXME(dominikh): this is a false positive 12 m.Run() 13 helper() 14 }