summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/TypedObject/fuzz4.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/TypedObject/fuzz4.js')
-rw-r--r--js/src/jit-test/tests/TypedObject/fuzz4.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/TypedObject/fuzz4.js b/js/src/jit-test/tests/TypedObject/fuzz4.js
new file mode 100644
index 000000000..e7eda834e
--- /dev/null
+++ b/js/src/jit-test/tests/TypedObject/fuzz4.js
@@ -0,0 +1,10 @@
+// |jit-test| error:Error;
+
+if (!this.hasOwnProperty("TypedObject"))
+ throw new Error();
+
+var A = TypedObject.uint8.array(10);
+var a = new A();
+a.forEach(function(val, i) {
+ assertEq(arguments[5], a);
+});