Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201105173854-bc9fc8d8c4bc / internal / lsp / testdata / fillstruct / fill_struct_package.go
1 package fillstruct
2
3 import (
4         h2 "net/http"
5
6         "golang.org/x/tools/internal/lsp/fillstruct/data"
7 )
8
9 func unexported() {
10         a := data.B{}   //@suggestedfix("}", "refactor.rewrite")
11         _ = h2.Client{} //@suggestedfix("}", "refactor.rewrite")
12 }