github.com/taylorchu/generic@v0.0.0-20171113184323-cd81575befa2/rewrite/_test/output/rename_unresolved_local/result_file.go (about)

     1  package GOPACKAGE
     2  
     3  import "fmt"
     4  
     5  var (
     6  	resultA = map[int]string{1: "hello"}
     7  )
     8  
     9  const (
    10  	resultX = 123
    11  	_       = 1
    12  )
    13  
    14  type resultStruct struct{ Val Data }
    15  
    16  func (s resultStruct) hello() {
    17  	resultAdd()
    18  	fmt.Println(resultX, resultA)
    19  }