Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201028153306-37f0764111ff / go / analysis / passes / errorsas / errorsas_test.go
1 // Copyright 2019 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 // +build go1.13
6
7 package errorsas_test
8
9 import (
10         "testing"
11
12         "golang.org/x/tools/go/analysis/analysistest"
13         "golang.org/x/tools/go/analysis/passes/errorsas"
14 )
15
16 func Test(t *testing.T) {
17         testdata := analysistest.TestData()
18         analysistest.Run(t, testdata, errorsas.Analyzer, "a")
19 }