diff options
Diffstat (limited to 'js/src/tests/js1_8_5/regress/regress-672893.js')
-rw-r--r-- | js/src/tests/js1_8_5/regress/regress-672893.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/js/src/tests/js1_8_5/regress/regress-672893.js b/js/src/tests/js1_8_5/regress/regress-672893.js new file mode 100644 index 000000000..497b6132f --- /dev/null +++ b/js/src/tests/js1_8_5/regress/regress-672893.js @@ -0,0 +1,18 @@ +// Any copyright is dedicated to the Public Domain. +// http://creativecommons.org/licenses/publicdomain/ + +function f() { + return function () { return function () { return function () { + return function () { return function () { return function () { + return function () { return function () { return function () { + return function () { return function () { return function () { + return function () { return function () { return function (a) { + var v = a; + assertEq(v, 42); + return function() { return v; }; + }; }; }; }; }; }; }; }; }; }; }; }; }; }; }; +}; + +assertEq(f()()()()()()()()()()()()()()()(42)(), 42); + +reportCompare(0, 0, 'ok'); |