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

type StructAnon struct {
	a struct{}
	b map[string]interface{}
	c map[string]struct {
		d int
		e bool
	}
}

func fill() {
	_ := StructAnon{} //@suggestedfix("}", "refactor.rewrite")
}