aboutsummaryrefslogtreecommitdiff
path: root/internal/lsp/testdata/missingfunction/channels.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/lsp/testdata/missingfunction/channels.go')
-rw-r--r--internal/lsp/testdata/missingfunction/channels.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/internal/lsp/testdata/missingfunction/channels.go b/internal/lsp/testdata/missingfunction/channels.go
deleted file mode 100644
index 436491c19..000000000
--- a/internal/lsp/testdata/missingfunction/channels.go
+++ /dev/null
@@ -1,9 +0,0 @@
-package missingfunction
-
-func channels(s string) {
- undefinedChannels(c()) //@suggestedfix("undefinedChannels", "quickfix")
-}
-
-func c() (<-chan string, chan string) {
- return make(<-chan string), make(chan string)
-}