Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / honnef.co / go / tools@v0.0.1-2020.1.5 / staticcheck / testdata / src / CheckTestMainExit-2 / CheckTestMainExit-2.go
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 }