Files
moxa/_test/struct12.go

16 lines
121 B
Go

package main
import "fmt"
type S1 struct {
Name string
}
type S2 struct {
*S1
}
func main() {
fmt.Println(S2{})
}