Sign in
◑
Theme
go
/
tools
/
b5d65e025bccf79b02252db0c040e158f58fed40
/
.
/
gopls
/
internal
/
lsp
/
testdata
/
extract
/
extract_function
/
extract_smart_initialization.go
blob: da2c669a8d73d0d37519bd1c78f4870fecaaa1f8 [
file
]
package extract
func _() {
var a []int
a = append(a, 2)
//@mark(exSt6, "a")
b := 4
//@mark(exEn6, "4")
//@extractfunc(exSt6, exEn6)
a = append(a, b)
}