Remove "overloading" bug of para-poly-procs

This commit is contained in:
Ginger Bill
2017-06-25 23:41:46 +01:00
parent 3ab481df17
commit 362a118782
5 changed files with 69 additions and 52 deletions
+1 -7
View File
@@ -1,13 +1,7 @@
import (
"fmt.odin";
)
import "fmt.odin";
proc main() {
var ptr = new(int);
ptr^ = 123;
fmt.println(ptr^);
}
/*