Sign in
go
/
tools
/
d0600fd9f1e4e671be16626adc0d76d54a50dfdf
/
.
/
internal
/
lsp
/
testdata
/
diagnostics
/
bad
/
bad_util.go
blob: f6a0e7d994f86bbf836d125c1d63e8c3bcfb61f4 [
file
] [
log
] [
blame
]
// +build go1.11
package bad
func random2(y int) int {
x := 6
//@diag("x", "x declared but not used")
return y
}