blob: 9b50af2cb9c493f0a2f7570e8910e8759e486af8 [file] [log] [blame]
package another
type (
I interface{ F() }
C struct{ I }
)
func (C) g()
func _() {
var x I = C{}
x.F() //@rename("F", "G")
}