DEBSOURCES
Skip Quicknav
sources / golang-github-traefik-yaegi / 0.16.1-2 / _test / interface10.go
123456789101112
package main type Edge interface { ReverseEdge() Edge } func main() { println("hello") } // Output: // hello