mirror of https://github.com/tc39/test262.git
17 lines
451 B
Plaintext
17 lines
451 B
Plaintext
// Copyright (C) 2018 Leo Balter. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
desc: Private Fields cannot be named constructor
|
|
info: |
|
|
Class Definitions / Static Semantics: Early Errors
|
|
|
|
ClassElementName : PrivateName ;
|
|
It is a Syntax Error if StringValue of PrivateName is "#constructor"
|
|
template: syntax/invalid
|
|
features: [class-fields-private]
|
|
---*/
|
|
|
|
//- elements
|
|
#constructor
|