github.com/HaHadaxigua/yaegi@v1.0.1/_test/type11.go (about) 1 package main 2 3 import ( 4 "compress/gzip" 5 "fmt" 6 "sync" 7 ) 8 9 var gzipWriterPools [gzip.BestCompression - gzip.BestSpeed + 2]*sync.Pool 10 11 func main() { 12 fmt.Printf("%T\n", gzipWriterPools) 13 } 14 15 // Output: 16 // [10]*sync.Pool