.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / honnef.co / go / tools@v0.1.1 / staticcheck / testdata / src / CheckTestMainExit-1_go14 / CheckTestMainExit-1.go
1 package pkg
2
3 import "testing"
4
5 func TestMain(m *testing.M) { // want `should call os\.Exit`
6         m.Run()
7 }