mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-30 19:24:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			458 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			458 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // Copyright (c) 2020 Ecma International.  All rights reserved.
 | |
| // This code is governed by the BSD license found in the LICENSE file.
 | |
| 
 | |
| /*---
 | |
| esid: sec-assignment-operators-static-semantics-early-errors
 | |
| description: >
 | |
|     It is a Syntax Error if AssignmentTargetType of LeftHandSideExpression is
 | |
|     not simple.
 | |
| negative:
 | |
|   phase: parse
 | |
|   type: SyntaxError
 | |
| features: [logical-assignment-operators]
 | |
| 
 | |
| ---*/
 | |
| 
 | |
| $DONOTEVALUATE();
 | |
| 
 | |
| function test() {}
 | |
| test() &&= 1;
 |