test262/test/language/literals/bigint/octal-invalid-digit.js

27 lines
538 B
JavaScript
Raw Normal View History

2017-07-11 17:55:23 +02:00
// Copyright (C) 2017 Robin Templeton. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Octal BigInt literal containing an invalid digit
esid: prod-NumericLiteral
info: |
NumericLiteral ::
NumericLiteralBase NumericLiteralSuffix
NumericLiteralBase ::
DecimalLiteral
BinaryIntegerLiteral
OctalIntegerLiteral
HexIntegerLiteral
NumericLiteralSuffix :: n
2017-07-11 17:55:23 +02:00
negative:
phase: parse
2017-07-11 17:55:23 +02:00
type: SyntaxError
features: [BigInt]
2017-07-11 17:55:23 +02:00
---*/
$DONOTEVALUATE();
2017-07-11 17:55:23 +02:00
0o9n;