blob: 5570a1b1ed4ea9f199a6e805b23ed879252abb54 [file] [log] [blame]
// This file was procedurally generated from the following sources:
// - src/class-elements/grammar-static-async-meth-super.case
// - src/class-elements/syntax/invalid/cls-expr-elements-invalid-syntax.template
/*---
description: Static Async Methods cannot contain direct super (class expression)
esid: prod-ClassElement
features: [async-functions, class]
flags: [generated]
negative:
phase: parse
type: SyntaxError
info: |
Class Definitions / Static Semantics: Early Errors
ClassElement : static MethodDefinition
It is a Syntax Error if HasDirectSuper of MethodDefinition is true.
---*/
$DONOTEVALUATE();
var C = class extends Function{
static async method() {
super();
}
};