aboutsummaryrefslogtreecommitdiff
path: root/internal/lsp/analysis/undeclaredname/testdata/src/a/slice.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/lsp/analysis/undeclaredname/testdata/src/a/slice.go')
-rw-r--r--internal/lsp/analysis/undeclaredname/testdata/src/a/slice.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/internal/lsp/analysis/undeclaredname/testdata/src/a/slice.go b/internal/lsp/analysis/undeclaredname/testdata/src/a/slice.go
deleted file mode 100644
index d741c68f6..000000000
--- a/internal/lsp/analysis/undeclaredname/testdata/src/a/slice.go
+++ /dev/null
@@ -1,9 +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 slice() {
- undefinedSlice([]int{1, 2}) // want "undeclared name: undefinedSlice"
-}