DEBSOURCES
Skip Quicknav
sources / golang-github-traefik-yaegi / 0.16.1-2 / _test / assign9.go
123456789101112131415
package main type foo func(b int) func boo(b int) { println("boo", b) } func main() { var f foo f = boo f(4) } // Output: // boo 4