Please answer these questions before submitting your issue. Thanks!
What version of Go are you using (go version)?
go version go1.8.1 linux/amd64
What did you do?
// the two are ok
var _ chan [0x2FFFF]byte
var _ = make(chan [0x2FFFF]byte)
// the two: <unknown line number>: channel element type too large (>64kB)
var c1 chan [0x2FFFF]byte
var c2 = make(chan [0x2FFFF]byte)
What did you expect to see?
compiles error for the blank identifier lines
What did you see instead?
the blank identifier lines compile ok