mirror of
https://github.com/golang/go
synced 2024-11-06 19:46:20 -07:00
719fbf7c21
Fixes golang/go#32414 Change-Id: If08e655d7a0e29b0865c13d8377e98be01cf24c5 Reviewed-on: https://go-review.googlesource.com/c/tools/+/184777 Run-TryBot: Rebecca Stambler <rstambler@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Cottrell <iancottrell@google.com>
22 lines
511 B
Go
22 lines
511 B
Go
// +build go1.11
|
|
|
|
package bad
|
|
|
|
func stuff() { //@item(stuff, "stuff", "func()", "func")
|
|
x := "heeeeyyyy"
|
|
random2(x) //@diag("x", "LSP", "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", "LSP", "y declared but not used")
|
|
}
|
|
|
|
type bob struct { //@item(bob, "bob", "struct{...}", "struct")
|
|
x int
|
|
}
|
|
|
|
func _() {
|
|
var q int
|
|
_ = &bob{
|
|
f: q, //@diag("f", "LSP", "unknown field f in struct literal")
|
|
}
|
|
}
|