summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1215992.js
blob: dd20be273d5ee0e9e97c2f14fdb79e04eb6e8ac7 (plain)
1
2
3
4
5
6
// |jit-test| error: ReferenceError
(function() {
    const x = "";
    x = y;
    return x = z;
})();