d038ef6999205b90ddf6cdec4a4df56a4c872953
[dotfiles/.git] / 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 }