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 / ifaceassert / cmd / ifaceassert / main.go
1 // Copyright 2020 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 // The ifaceassert command runs the ifaceassert analyzer.
6 package main
7
8 import (
9         "golang.org/x/tools/go/analysis/passes/ifaceassert"
10         "golang.org/x/tools/go/analysis/singlechecker"
11 )
12
13 func main() { singlechecker.Main(ifaceassert.Analyzer) }