blob: 4b1c412a63689340696b1a5c1ba2a9826e468e47 [file] [log] [blame]
keith_miller@apple.combcc77f22016-07-15 06:03:25 +00001// Copyright (C) 2015 the V8 project authors. All rights reserved.
2// This code is governed by the BSD license found in the LICENSE file.
3/*---
4es6id: 14.5.1
5description: >
6 ClassElement : static MethodDefinition
7
8 It is a Syntax Error if HasDirectSuper of MethodDefinition is true.
9
10 (get)
11
12negative: SyntaxError
13---*/
14class A {
15 static get method() {
16 super();
17 }
18}
19