github.com/traefik/yaegi@v0.15.1/_test/composite14.go (about)

     1  package main
     2  
     3  import "fmt"
     4  
     5  type T struct {
     6  	b []byte
     7  }
     8  
     9  func main() {
    10  	t := T{nil}
    11  	fmt.Println(t)
    12  }
    13  
    14  // Output:
    15  // {[]}