Sign in
go
/
tools
/
b82bf6f0cabf2b0cb1d1d242250a37753377f716
/
.
/
gopls
/
internal
/
lsp
/
testdata
/
workspacesymbol
/
issue44806.go
blob: 6a6e03a5f97690773c051f83dc55fe1dec1ae681 [
file
] [
log
] [
blame
]
package main
type T struct{}
// We should accept all valid receiver syntax when scanning symbols.
func (*(T)) m1() {}
func (*T) m2() {}
func (T) m3() {}
func ((T)) m4() {}
func ((*T)) m5() {}