```Go package p type _ [1 << 100]byte ``` produces the type-check error: ``` x.go:2:9: array length 1 << 100 (untyped int constant 1267650600228229401496703205376) must be integer ``` The int constant is an integer.