summaryrefslogtreecommitdiff
path: root/js/src/tests/js1_8_5/regress/regress-621814.js
blob: 146a2f3edad92a8f66b52ecf183a5ae01a8b4dde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/licenses/publicdomain/
 */
var expect = 'pass';
var actual = expect;
function f({"\xF51F": x}) {}
try {
    eval(uneval(f));
} catch (e) {
    actual = '' + e;
}
reportCompare(expect, actual, "");