summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/misc/unicode-identifier-1d17.js
blob: ae763fdf27583197869c7a94ab8e34384ef22df0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/licenses/publicdomain/
 */

var o = {}
try {
    eval('o.\\u1d17 = 42;');
}
catch (e) {
    assertEq('should not fail', true);
}
assertEq(o['\u1d17'], 42);

if (typeof reportCompare == 'function')
    reportCompare(true, true);