Fix Firebird 'make dist' and build
[mono.git] / mcs / jtests / func-form-params.js
index 2ca1518a0a803651d3dbd0cf35a4f113170eab4e..9f8cb40909a52e2e5d17d89d5a61ea7cfd1e04de 100644 (file)
@@ -1,3 +1,14 @@
 function f (i, j)
 {
 }
+
+function g (i)
+{
+    i;
+}
+    
+function h (i, j, k)
+{
+    var a;
+    a = i + j + k;
+}