DEBSOURCES
Skip Quicknav
sources / golang-github-traefik-yaegi / 0.16.1-2 / _test / goto1.go
123456789101112
package main func main() { if true { goto here } here: println("ok") } // Output: // ok