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
7package errorsas_test
8
9import (
10	"testing"
11
12	"golang.org/x/tools/go/analysis/analysistest"
13	"golang.org/x/tools/go/analysis/passes/errorsas"
14)
15
16func Test(t *testing.T) {
17	testdata := analysistest.TestData()
18	analysistest.Run(t, testdata, errorsas.Analyzer, "a")
19}
20