mirror of
https://github.com/traefik/yaegi.git
synced 2026-06-01 18:37:56 +00:00
19 lines
144 B
Go
19 lines
144 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
type S1 struct {
|
|
Name string
|
|
}
|
|
|
|
type S2 struct {
|
|
*S1
|
|
}
|
|
|
|
func main() {
|
|
fmt.Println(S2{})
|
|
}
|
|
|
|
// Output:
|
|
// {<nil>}
|