test262/src/class-elements/grammar-static-private-async-meth-constructor.case
2018-09-10 11:20:40 -04:00

17 lines
508 B
Plaintext

// Copyright (C) 2018 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
desc: Static Async Private Methods 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: [async-functions, class-static-methods-private]
---*/
//- elements
static async #constructor() {}