mirror of https://github.com/tc39/test262.git
13 lines
340 B
JavaScript
13 lines
340 B
JavaScript
|
// Copyright (C) Copyright 2014 the V8 project authors. All rights reserved.
|
||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||
|
/*---
|
||
|
es6id: 12.2.5
|
||
|
description: >
|
||
|
In a class, computed property names for static
|
||
|
methods cannot be "constructor"
|
||
|
negative: SyntaxError
|
||
|
---*/
|
||
|
class C {
|
||
|
static ['constructor']() {}
|
||
|
}
|