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

     1  package main
     2  
     3  import (
     4  	"fmt"
     5  )
     6  
     7  func main() {
     8  	const tooBig = 1267650600228229401496703205376
     9  	const huge = 1 << 100
    10  	const large = huge >> 38
    11  
    12  	fmt.Println(int64(large))
    13  }
    14  
    15  // Output:
    16  // 4611686018427387904