mirror of https://github.com/tc39/test262.git
17 lines
380 B
JavaScript
17 lines
380 B
JavaScript
// Copyright (C) 2017 Robin Templeton. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
description: >
|
|
It is a Syntax Error if the NumericLiteralBase contains an ExponentPart.
|
|
esid: sec-numeric-literal-static-semantics-early-errors
|
|
features: [BigInt]
|
|
negative:
|
|
phase: parse
|
|
type: SyntaxError
|
|
---*/
|
|
|
|
$DONOTEVALUATE();
|
|
|
|
0e0n;
|