Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCésar Natarén <cesar@mono-cvs.ximian.com>2004-03-14 00:49:38 +0300
committerCésar Natarén <cesar@mono-cvs.ximian.com>2004-03-14 00:49:38 +0300
commit0a5edc2a5e39a5ec6ee5c6c0bac068b3283ae8a3 (patch)
tree747e1065d7f39d4fb5905ef6ec8d1e5027b3dd7d /mcs/jtests
parent427fdabe0a52845bb82a40223a63082493639fb5 (diff)
2004-03-13 Cesar Lopez Nataren <cesar@ciencias.unam.mx>
* func-form-params.js: exercise function's parameters. svn path=/trunk/mcs/; revision=23999
Diffstat (limited to 'mcs/jtests')
-rw-r--r--mcs/jtests/func-form-params.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/mcs/jtests/func-form-params.js b/mcs/jtests/func-form-params.js
index 2ca1518a0a8..9f8cb40909a 100644
--- a/mcs/jtests/func-form-params.js
+++ b/mcs/jtests/func-form-params.js
@@ -1,3 +1,14 @@
function f (i, j)
{
}
+
+function g (i)
+{
+ i;
+}
+
+function h (i, j, k)
+{
+ var a;
+ a = i + j + k;
+}