github.com/amarpal/go-tools@v0.0.0-20240422043104-40142f59f616/staticcheck/sa3000/testdata/src/example.com/CheckTestMainExit-2_go14/CheckTestMainExit-2.go (about)

     1  package pkg
     2  
     3  import (
     4  	"os"
     5  	"testing"
     6  )
     7  
     8  func TestMain(m *testing.M) {
     9  	m.Run()
    10  	os.Exit(1)
    11  }