Fixed up function template inference to handle pointer to template types

This commit is contained in:
Nathan Braswell
2015-05-23 23:40:55 -04:00
parent eebffb404e
commit 7448a88f66
3 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import io:*
fun ptrFn<T>(ptr: T*):void {
println(*ptr)
}
fun main():int {
var a = 8
ptrFn(&a)
return 0
}