DEBSOURCES
Skip Quicknav
sources / golang-github-traefik-yaegi / 0.16.1-2 / _test / const15.go
1234567891011121314151617
package main type T1 t1 type t1 int8 const ( P2 T1 = 2 P3 T1 = 3 ) func main() { println(P3) } // Output: // 3