mirror of https://github.com/tc39/test262.git
19 lines
506 B
JavaScript
19 lines
506 B
JavaScript
// Copyright (C) 2019 Caio Lima (Igalia SL). All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
/*---
|
|
esid: sec-static-semantics-early-errors
|
|
description: >
|
|
ModuleBody : ModuleItemList
|
|
It is a Syntax Error if AllPrivateIdentifiersValid of ModuleItemList with an empty List as an argument is false.
|
|
flags: [module]
|
|
features: [class-static-fields-private]
|
|
negative:
|
|
phase: parse
|
|
type: SyntaxError
|
|
---*/
|
|
|
|
$DONOTEVALUATE();
|
|
|
|
var x = {};
|
|
x.#f = 'Test262';
|