gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/_test/interface27.go (about) 1 package main 2 3 import "fmt" 4 5 var errs = map[int]error{0: nil} 6 7 func main() { 8 fmt.Println(errs) 9 } 10 11 // Output: 12 // map[0:<nil>]