DEBSOURCES
Skip Quicknav
sources / golang-github-traefik-yaegi / 0.16.1-2 / _test / ret6.go
123456789101112131415
package main import "fmt" type Foo struct{} func foo() *Foo { return nil } func main() { f := foo() fmt.Println(f) } // Output: // <nil>