mirror of https://github.com/tc39/test262.git
26 lines
693 B
JavaScript
26 lines
693 B
JavaScript
// This file was procedurally generated from the following sources:
|
|
// - src/class-elements/grammar-privatename-constructor.case
|
|
// - src/class-elements/syntax/invalid/cls-decl-elements-invalid-syntax.template
|
|
/*---
|
|
description: Private Fields cannot be named constructor (class declaration)
|
|
esid: prod-ClassElement
|
|
features: [class-fields-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 {
|
|
#constructor
|
|
}
|