Sign in
go
/
tools
/
ce0925977bae8da7ac5971daffaf292d416e637f
/
.
/
gopls
/
internal
/
lsp
/
testdata
/
extract
/
extract_function
/
extract_return_init_nonnested.go
blob: bb5ed083c2d25d87d4a6163190dde70034667278 [
file
] [
log
] [
blame
]
package extract
func _() string {
x := 1
if x == 0 {
//@mark(exSt12, "if")
x = 3
return "a"
}
x = 2
return "b"
//@mark(exEn12, "\"b\"")
//@extractfunc(exSt12, exEn12)
}