complex.go 217 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 // RUN: llgo -o %t %s // RUN: %t 2>&1 | count 0 package main func constIntToComplex() complex128 { return 0 } func main() { var c64 complex64 var c128 complex128 c128 = complex128(c64) c64 = complex64(c128) }