aboutsummaryrefslogtreecommitdiff
path: root/internal/lsp/testdata/semantic/b.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/lsp/testdata/semantic/b.go')
-rw-r--r--internal/lsp/testdata/semantic/b.go34
1 files changed, 0 insertions, 34 deletions
diff --git a/internal/lsp/testdata/semantic/b.go b/internal/lsp/testdata/semantic/b.go
deleted file mode 100644
index a536f97bf..000000000
--- a/internal/lsp/testdata/semantic/b.go
+++ /dev/null
@@ -1,34 +0,0 @@
-package semantictokens //@ semantic("")
-
-func f(x ...interface{}) {
-}
-
-func weirⰀd() { /*😀*/ // comment
- const (
- snil = nil
- nil = true
- true = false
- false = snil
- cmd = `foof`
- double = iota
- iota = copy
- four = (len(cmd)/2 < 5)
- five = four
- )
- f(cmd, nil, double, iota)
-}
-
-/*
-
-multiline */ /*
-multiline
-*/
-type AA int
-type BB struct {
- AA
-}
-type CC struct {
- AA int
-}
-type D func(aa AA) (BB error)
-type E func(AA) BB