Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / honnef.co / go / tools@v0.0.1-2020.1.5 / unused / testdata / src / interfaces2 / interfaces.go
1 package pkg
2
3 type I interface {
4         foo()
5 }
6
7 type T struct{}
8
9 func (T) foo() {}
10 func (T) bar() {} // want `bar`
11
12 var _ struct{ T }