mirror of
https://github.com/traefik/yaegi.git
synced 2026-06-01 18:37:56 +00:00
20 lines
179 B
Go
20 lines
179 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
type cmap struct {
|
|
servers map[int64]*server
|
|
}
|
|
|
|
type server struct {
|
|
cm *cmap
|
|
}
|
|
|
|
func main() {
|
|
m := cmap{}
|
|
fmt.Println(m)
|
|
}
|
|
|
|
// Output:
|
|
// {map[]}
|