Sign in
go
/
tools
/
c39ce2148d8ec966a8dff2790a54aa704dd38457
/
.
/
internal
/
lsp
/
testdata
/
comments
/
comments.go
blob: e261cfd342adb3420fe64ca33e64f8507005129f [
file
] [
log
] [
blame
]
package comments
var p bool
//@complete(re"$")
func _() {
var a int
switch a {
case 1:
//@complete(re"$")
_ = a
}
var b chan int
select {
case <-b:
//@complete(re"$")
_ = b
}
var (
//@complete(re"$")
_ = a
)
}