shithub: mc

Download patch

ref: 82f94a1ad3d38b62ea08351190ec237646c52a17
parent: 9dd33d5098c2784d246ce385e6acb7d1aea58df1
author: Ori Bernstein <[email protected]>
date: Wed Aug 8 20:15:09 EDT 2012

Add missing test file.

--- /dev/null
+++ b/test/genericcall.myr
@@ -1,0 +1,13 @@
+const f = {
+	-> 42
+}
+
+generic id = {a:@a
+	-> f()
+}
+
+const main = {
+	id("adsf")
+	-> id(42)
+}
+