mirror of
https://github.com/golang/go
synced 2024-11-06 06:26:13 -07:00
eabff7e044
This change adds a quick fix for type errors of the type "no new vars on left side of :=". It will replace the ":=" with an "=". Updates golang/go#34644 Change-Id: I91af8eb82956104229c3b4f3d0fce60fdfdbb5ea Reviewed-on: https://go-review.googlesource.com/c/tools/+/225477 Run-TryBot: Rohan Challa <rohan@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Rebecca Stambler <rstambler@golang.org>
18 lines
448 B
Go
18 lines
448 B
Go
// 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.
|
|
|
|
package nonewvars_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"golang.org/x/tools/go/analysis/analysistest"
|
|
"golang.org/x/tools/internal/lsp/analysis/nonewvars"
|
|
)
|
|
|
|
func Test(t *testing.T) {
|
|
testdata := analysistest.TestData()
|
|
analysistest.RunWithSuggestedFixes(t, testdata, nonewvars.Analyzer, "a")
|
|
}
|