github.com/traefik/yaegi@v0.15.1/_test/issue-1306.go (about) 1 package main 2 3 import "fmt" 4 5 func check() (result bool, err error) { 6 return true, nil 7 } 8 9 func main() { 10 result, error := check() 11 fmt.Println(result, error) 12 } 13 14 // Output: 15 // true <nil>