summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/extensions/uneval/bug566661.js
blob: 51e142351e3be11e7082b6f6a7e5cf351d57160e (plain)
1
2
3
4
5
6
7
8
// |reftest| skip-if(!this.uneval)

var f = function (q) { return q['\xC7']; }
var d = eval(uneval(f));
assertEq(d({'\xC7': 'good'}), 'good');

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