blob: 34e0d6669b73ff20fe28714bb014d9a9c7e73b59 [file]
This test checks that the blank identifier `_` is not suggested as a completion candidate for struct fields.
-- flags --
-ignore_extra_diags
-- issue79325.go --
package p
type foo struct {
bar uint8
_ [2]byte
}
func (f foo) _() bool {
return f. //@rank(re"() \\/", "bar", "!_")
}