DEBSOURCES
Skip Quicknav
sources / golang-github-traefik-yaegi / 0.16.1-2 / _test / bool1.go
1234567891011121314151617
package main type T struct { v bool } func main() { a := T{} if a.v { println("ok") } else { println("nok") } } // Output: // nok