From fab08ab7a283baa3c3a855f7d44dfd025335ab0f Mon Sep 17 00:00:00 2001 From: Steve Fink Date: Tue, 8 May 2018 17:03:49 -0700 Subject: [PATCH] Add test for numeric literal followed by identifier --- .../numeric/numeric-followed-by-ident.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/language/literals/numeric/numeric-followed-by-ident.js diff --git a/test/language/literals/numeric/numeric-followed-by-ident.js b/test/language/literals/numeric/numeric-followed-by-ident.js new file mode 100644 index 0000000000..d15babcd46 --- /dev/null +++ b/test/language/literals/numeric/numeric-followed-by-ident.js @@ -0,0 +1,18 @@ +// Copyright (C) 2018 Mozilla. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +esid: sec-literals-numeric-literals +description: > + NumericLiteral followed by IdentifierStart +info: | + The source character immediately following a NumericLiteral must not be an IdentifierStart or DecimalDigit. + +negative: + phase: parse + type: SyntaxError +---*/ + +throw "Test262: This statement should not be evaluated."; + +3in []