github.com/traefik/yaegi@v0.15.1/_test/const25.go (about)

     1  package main
     2  
     3  const (
     4  	FGBlack Attribute = iota + 30
     5  )
     6  
     7  type Attribute int
     8  
     9  func main() {
    10  	println(FGBlack)
    11  }