blob: 2ed5b36df08d707ed7b9c4fa8c1b602dc047e144 [file] [log] [blame]
// Copyright 2024 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.
//go:build ignore
// The unusedfunc command runs the maprange analyzer.
package main
import (
"golang.org/x/tools/go/analysis/singlechecker"
"golang.org/x/tools/gopls/internal/analysis/maprange"
)
func main() { singlechecker.Main(maprange.Analyzer) }