Sign in
◑
Theme
go
/
tools
/
b5d65e025bccf79b02252db0c040e158f58fed40
/
.
/
gopls
/
internal
/
lsp
/
testdata
/
extract
/
extract_function
/
extract_issue_44813.go
blob: 9713b9101eef62cfdac5ae0156ec6bf8d76d597d [
file
]
package extract
import "fmt"
func main() {
x := []rune{}
//@mark(exSt9, "x")
s := "HELLO"
for _, c := range s {
x = append(x, c)
}
//@mark(exEn9, "}")
//@extractfunc(exSt9, exEn9)
fmt.Printf("%x\n", x)
}