mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-03 21:24:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			778 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			778 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// This file was procedurally generated from the following sources:
 | 
						|
// - src/class-elements/init-err-contains-super.case
 | 
						|
// - src/class-elements/initializer-error/cls-expr-fields-static-literal-name-nested.template
 | 
						|
/*---
 | 
						|
description: Syntax error if `super()` used in class field (static literal ClassElementName)
 | 
						|
esid: sec-class-definitions-static-semantics-early-errors
 | 
						|
features: [class, class-fields-public, class-static-fields-public]
 | 
						|
flags: [generated]
 | 
						|
negative:
 | 
						|
  phase: parse
 | 
						|
  type: SyntaxError
 | 
						|
info: |
 | 
						|
    Static Semantics: Early Errors
 | 
						|
 | 
						|
      FieldDefinition:
 | 
						|
        PropertyNameInitializeropt
 | 
						|
 | 
						|
      - It is a Syntax Error if Initializer is present and Initializer Contains SuperCall is true.
 | 
						|
 | 
						|
---*/
 | 
						|
 | 
						|
$DONOTEVALUATE();
 | 
						|
 | 
						|
var C = class {
 | 
						|
  static x = () => super();
 | 
						|
}
 |