1 // Copyright 2024 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 //go:build ignore 6 // +build ignore 7 8 package main 9 10 import ( 11 "golang.org/x/tools/go/analysis/singlechecker" 12 "golang.org/x/tools/go/analysis/passes/stdversion" 13 ) 14 15 func main() { singlechecker.Main(stdversion.Analyzer) } 16