summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/JSON/parse/15.12.1.1-g5-3.js
blob: c302bc31efb22aef96dd247de6fbe48cbd6a3fb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (c) 2012 Ecma International.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 15.12.1.1-g5-3
description: >
    A JSONStringCharacter UnicodeEscape may not include any non=hex
    characters
---*/

assert.throws(SyntaxError, function() {
        JSON.parse('"\\u0X50"') 
});

reportCompare(0, 0);