Fix constant conversion for complex numbers from integers

This commit is contained in:
Ginger Bill
2017-04-01 12:12:08 +01:00
parent dc303cde21
commit 90fc9abeae

View File

@@ -5,5 +5,7 @@
main :: proc() {
x := 1+2i;
y := 3-4i;
x = x*y;
fmt.printf("%v\n", x);
}