summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug648708.js
blob: 1f79596371cdd2c799ba5cefa88cfa029b991732 (plain)
1
2
3
4
5
6
thrown = false
try {
    ("".x = Object.seal)
    "".x.valueOf();
} catch (e) {thrown = true}
assertEq(thrown, true);