Fix min type info for polymorphic procedures and named types

This commit is contained in:
gingerBill
2018-06-03 21:09:08 +01:00
parent c39332c7e7
commit b027b1d60f
4 changed files with 11 additions and 19 deletions
+2 -2
View File
@@ -69,8 +69,8 @@ quick_sort_proc :: proc(array: $A/[]$T, f: proc(T, T) -> int) {
j -= 1;
}
quick_sort(a[0..i], f);
quick_sort(a[i..n], f);
quick_sort_proc(a[0..i], f);
quick_sort_proc(a[i..n], f);
}
quick_sort :: proc(array: $A/[]$T) {