Sign in
go
/
vscode-go
/
80897aa66325bed8ece3f734d8fe755ce75142f2
/
.
/
test
/
fixtures
/
completions
/
nosnippets.go
blob: 05b35ddea601a5d3ab6dde867bc02d2c6cf8813a [
file
] [
log
] [
blame
]
package main
import "fmt"
func main() {
fmt.Print()
funcAsVariable := func(k int) {}
hello(funcAs)
bye(funcAs, 1)
}
type convert func(int) string
func hello(s convert) {
return s(1)
}
func bye(s convert, i int) {
return s(i)
}