github.com/v2fly/tools@v0.100.0/internal/lsp/testdata/extract/extract_function/extract_redefine.go (about)

     1  package extract
     2  
     3  import "strconv"
     4  
     5  func _() {
     6  	i, err := strconv.Atoi("1")
     7  	u, err := strconv.Atoi("2") //@extractfunc("u", ")")
     8  	if i == u || err == nil {
     9  		return
    10  	}
    11  }