Files
moxa/_test/struct14.go

19 lines
160 B
Go

package main
import (
"fmt"
"net/http"
)
type Fromage struct {
*http.Server
}
func main() {
a := Fromage{}
fmt.Println(a.Server)
}
// Output:
// <nil>