DEBSOURCES
Skip Quicknav
sources / golang-github-traefik-yaegi / 0.16.1-2 / _test / interface35.go
123456789101112131415
package main import "fmt" type T struct { I interface{} } func main() { t := T{"test"} fmt.Println(t) } // Output: // {test}