DEBSOURCES
Skip Quicknav
sources / golang-github-traefik-yaegi / 0.16.1-2 / _test / assign16.go
123456789101112131415
package main type H struct { bits uint } func main() { h := &H{8} var x uint = (1 << h.bits) >> 6 println(x) } // Output: // 4