aboutsummaryrefslogtreecommitdiff
path: root/internal/lsp/analysis/undeclaredname/testdata/src/a/consecutive_params.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/lsp/analysis/undeclaredname/testdata/src/a/consecutive_params.go')
-rw-r--r--internal/lsp/analysis/undeclaredname/testdata/src/a/consecutive_params.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/internal/lsp/analysis/undeclaredname/testdata/src/a/consecutive_params.go b/internal/lsp/analysis/undeclaredname/testdata/src/a/consecutive_params.go
deleted file mode 100644
index ab7b2ba5c..000000000
--- a/internal/lsp/analysis/undeclaredname/testdata/src/a/consecutive_params.go
+++ /dev/null
@@ -1,10 +0,0 @@
-// Copyright 2021 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 undeclared
-
-func consecutiveParams() {
- var s string
- undefinedConsecutiveParams(s, s) // want "undeclared name: undefinedConsecutiveParams"
-}