github.com/v2fly/tools@v0.100.0/internal/lsp/testdata/rename/crosspkg/another/another.go (about)

     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  }