test262/test/language/statements/class/syntax/early-errors/grammar-static-private-meth...

26 lines
729 B
JavaScript
Raw Normal View History

2018-09-06 00:06:05 +02:00
// This file was procedurally generated from the following sources:
// - src/class-elements/grammar-static-private-meth-constructor.case
// - src/class-elements/syntax/invalid/cls-decl-elements-invalid-syntax.template
/*---
description: Static Private Methods cannot be named constructor (class declaration)
esid: prod-ClassElement
features: [class-static-methods-private, class]
flags: [generated]
negative:
phase: parse
type: SyntaxError
info: |
Class Definitions / Static Semantics: Early Errors
ClassElementName : PrivateName ;
It is a Syntax Error if StringValue of PrivateName is "#constructor"
---*/
throw "Test262: This statement should not be evaluated.";
class C {
static #constructor() {}
}