Sign in
go
/
tools
/
b15dac2b8849754d58ebde3b57bbb75776ba869b
/
.
/
gopls
/
internal
/
lsp
/
testdata
/
extract
/
extract_variable
/
extract_func_call.go
blob: a20b45f58696cb065c52d5f561c1d1375a7373cb [
file
] [
log
] [
blame
]
package extract
import "strconv"
func _() {
x0 := append([]int{}, 1)
//@suggestedfix("append([]int{}, 1)", "refactor.extract", "")
str := "1"
b, err := strconv.Atoi(str)
//@suggestedfix("strconv.Atoi(str)", "refactor.extract", "")
}