7.8.3-3gs-strict.js (441B)
1 'use strict'; 2 // Copyright (c) 2012 Ecma International. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 5 /*--- 6 es5id: 7.8.3-3gs 7 description: > 8 Strict Mode - octal extension is forbidden in strict mode (after a 9 hex number is assigned to a variable from an eval) 10 flags: [onlyStrict] 11 ---*/ 12 13 var a; 14 assert.throws(SyntaxError, function() { 15 eval("a = 0x1;a = 01;"); 16 }); 17 18 reportCompare(0, 0);