diff options
Diffstat (limited to 'js/src/jit-test/tests/gc/bug-1252154.js')
-rw-r--r-- | js/src/jit-test/tests/gc/bug-1252154.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/gc/bug-1252154.js b/js/src/jit-test/tests/gc/bug-1252154.js new file mode 100644 index 000000000..192395696 --- /dev/null +++ b/js/src/jit-test/tests/gc/bug-1252154.js @@ -0,0 +1,11 @@ +// Bug 1252154: Inline typed array objects need delayed metadata collection. +// Shouldn't crash. + +if (!this.hasOwnProperty("TypedObject")) + quit(); + +gczeal(7,1); +enableShellAllocationMetadataBuilder(); +var T = TypedObject; +var AT = new T.ArrayType(T.Any,10); +var v = new AT(); |