mirror of
https://github.com/traefik/yaegi.git
synced 2026-06-01 18:37:56 +00:00
13 lines
125 B
Go
13 lines
125 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
var errs = map[int]error{0: nil}
|
|
|
|
func main() {
|
|
fmt.Println(errs)
|
|
}
|
|
|
|
// Output:
|
|
// map[0:<nil>]
|