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