1 package main 2 3 func main() { 4 z := complex(float32(1), float32(2)) // ERROR: complex not allowed 5 _ = z 6 } 7