diff options
author | Araq <rumpf_a@web.de> | 2014-12-17 01:43:36 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-12-17 01:43:36 +0100 |
commit | c91cf3068f7d215ca8aaafed505b78f389a2885e (patch) | |
tree | 4f66944705bab8b5da2926be7a0a6cf6d50ac540 /tests/js/tbyvar.nim | |
parent | 02cc9633ebe23d2b9c99254fad8b6c6abcb05e1e (diff) | |
download | Nim-c91cf3068f7d215ca8aaafed505b78f389a2885e.tar.gz |
JS tests cleaned up
Diffstat (limited to 'tests/js/tbyvar.nim')
-rw-r--r-- | tests/js/tbyvar.nim | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/js/tbyvar.nim b/tests/js/tbyvar.nim index 5ed2de1da..1269e6f66 100644 --- a/tests/js/tbyvar.nim +++ b/tests/js/tbyvar.nim @@ -4,12 +4,13 @@ bar 12 2 foo 12 bar 12 -2''' +2 +''' """ # bug #1489 -proc foo(x: int) = echo "foo: ", x -proc bar(y: var int) = echo "bar: ", y +proc foo(x: int) = echo "foo ", x +proc bar(y: var int) = echo "bar ", y var x = 12 foo(x) |