octal-invalid-unicode.js (548B)
1 // |reftest| error:SyntaxError 2 // Copyright (C) 2015 the V8 project authors. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 5 /*--- 6 es6id: 11.8.3 7 description: Octal-integer-literal-like sequence expressed with unicode escape sequence 8 info: | 9 OctalIntegerLiteral :: 10 0o OctalDigits 11 0O OctalDigits 12 OctalDigits :: 13 OctalDigit 14 OctalDigits OctalDigit 15 OctalDigit :: one of 16 0 1 2 3 4 5 6 7 17 negative: 18 phase: parse 19 type: SyntaxError 20 ---*/ 21 22 $DONOTEVALUATE(); 23 24 0\u006f0;