summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/regress/regress-559402-1.js
blob: 4f3a3f99cca9c87f8d957455edb9d8b084586695 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/licenses/publicdomain/
 */
var expect = "No error";
var actual = expect;

try {
    eval('function foo() { "use strict"; }');
} catch (e) {
    actual = '' + e;
}

reportCompare(expect, actual, "ok");