aboutsummaryrefslogtreecommitdiff
path: root/gopls/internal/lsp/testdata/fillstruct/fill_struct_package.go
blob: ef35627c8ea76f1ab42ab80873526ee0fcd73de8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package fillstruct

import (
	h2 "net/http"

	"golang.org/lsptests/fillstruct/data"
)

func unexported() {
	a := data.B{}   //@suggestedfix("}", "refactor.rewrite", "Fill")
	_ = h2.Client{} //@suggestedfix("}", "refactor.rewrite", "Fill")
}