1 package main 2 3 func main() { 4 var z complex64 = 1 + 2i // ERROR: complex64 not allowed 5 _ = z 6 } 7