Files
moxa/_test/alias1.go
2019-09-24 16:10:04 +02:00

17 lines
126 B
Go

package main
import "fmt"
type MyT T
type T struct {
Name string
}
func main() {
fmt.Println(MyT{})
}
// Output:
// {}