golangci-lint/test/testdata/tparallel/missing_toplevel_test.go
2020-10-02 13:00:46 -07:00

12 lines
128 B
Go

package testdata
import (
"testing"
)
func TestTopLevel(t *testing.T) {
t.Run("", func(t *testing.T) {
t.Parallel()
})
}