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