summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/literals/bigint/non-octal-like-invalid-0008n.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/literals/bigint/non-octal-like-invalid-0008n.js')
-rw-r--r--js/src/tests/test262/language/literals/bigint/non-octal-like-invalid-0008n.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/literals/bigint/non-octal-like-invalid-0008n.js b/js/src/tests/test262/language/literals/bigint/non-octal-like-invalid-0008n.js
new file mode 100644
index 0000000000..a624cc5abb
--- /dev/null
+++ b/js/src/tests/test262/language/literals/bigint/non-octal-like-invalid-0008n.js
@@ -0,0 +1,29 @@
+// |reftest| error:SyntaxError
+// Copyright (C) 2019 Leo Balter. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: prod-NumericLiteral
+description: >
+ The BigInt suffix is disallowed in NonOctalDecimalIntegerLiteral
+info: |
+ NumericLiteral ::
+ DecimalIntegerLiteral BigIntLiteralSuffix
+
+ https://github.com/tc39/proposal-bigint/issues/208
+
+ NumericLiteral ::
+ DecimalBigIntegerLiteral
+
+ DecimalBigIntegerLiteral ::
+ 0 BigIntLiteralSuffix
+ NonZeroDigit DecimalDigits_opt BigIntLiteralSuffix
+features: [BigInt]
+negative:
+ phase: parse
+ type: SyntaxError
+---*/
+
+$DONOTEVALUATE();
+
+0008n;