1
0
mirror of https://github.com/golang/go synced 2024-10-02 08:08:33 -06:00
go/internal/lsp/testdata/bad/bad0.go
Rebecca Stambler 6e267b5cc7 internal/lsp: add additional tests for completion
New tests include cases for anonymous structs, composite literals,
ranking of results in binary expressions, and import cycles.

Change-Id: Ic02e84e09101bb9873fc1705bba2594d655bb45b
Reviewed-on: https://go-review.googlesource.com/c/153443
Reviewed-by: Ian Cottrell <iancottrell@google.com>
2018-12-19 22:27:14 +00:00

22 lines
486 B
Go

// +build go1.11
package bad
func stuff() { //@item(stuff, "stuff()", "", "func")
x := "heeeeyyyy"
random2(x) //@diag("x", "cannot use x (variable of type string) as int value in argument to random2")
random2(1) //@complete("dom", random, random2, random3)
y := 3 //@diag("y", "y declared but not used")
}
type bob struct { //@item(bob, "bob", "struct{...}", "struct")
x int
}
func _() {
var q int
_ = &bob{
f: q, //@diag("f", "unknown field f in struct literal")
}
}