summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/baseline/bug845331.js
blob: fd5182a988062de139b2b77657e6c33a5174a09c (plain)
1
2
3
4
5
6
7
8
9
function TestCase(n, d, e, a) {};
function reportCompare (expected, actual) {
    var testcase = new TestCase("unknown-test-name", null, expected, actual);
}
reportCompare();
var b = eval(String((TestCase)));
reportCompare(true, true);
expect = actual = ''
reportCompare(expect, actual);