blob: 42250f93df816bd00cd503766a600f07f46b364f [file] [log] [blame]
// Copyright 2020 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// The ifaceassert command runs the ifaceassert analyzer.
package main
import (
"golang.org/x/tools/go/analysis/passes/ifaceassert"
"golang.org/x/tools/go/analysis/singlechecker"
)
func main() { singlechecker.Main(ifaceassert.Analyzer) }