blob: edf8d1723a2c2bc15d9c357c3dbfd6145bfecf25 [file]
// Copyright 2026 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 ptrtoerror command applies the golang.org/x/tools/gopls/internal/analysis/ptrtoerror
// analysis to the specified packages of Go source code.
package main
import (
"golang.org/x/tools/go/analysis/singlechecker"
"golang.org/x/tools/gopls/internal/analysis/ptrtoerror"
)
func main() { singlechecker.Main(ptrtoerror.Analyzer) }