fix reference type inference

This commit is contained in:
Nathan Braswell
2015-07-15 13:56:57 -04:00
parent 06f36f2a87
commit 51adf491fa
8 changed files with 65 additions and 30 deletions

View File

@@ -59,6 +59,9 @@ fun main():int {
var t.construct() : test_cons
call(t)
id(t).do()
var do_copy = id(t)
do_copy.do()
return 0
}