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