9b50af2cb9c493f0a2f7570e8910e8759e486af8
[dotfiles/.git] / another.go
1 package another
2
3 type (
4         I interface{ F() }
5         C struct{ I }
6 )
7
8 func (C) g()
9
10 func _() {
11         var x I = C{}
12         x.F() //@rename("F", "G")
13 }