mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-31 11:44:31 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			320 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			320 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // Copyright (C) 2020 Rick Waldron. All rights reserved.
 | |
| // This code is governed by the BSD license found in the LICENSE file.
 | |
| 
 | |
| /*---
 | |
| esid: prod-AwaitExpression
 | |
| description: >
 | |
|   await is not a keyword in script code
 | |
| features: [top-level-await]
 | |
| ---*/
 | |
| 
 | |
| class await {}
 | |
| 
 | |
| assert.sameValue(new await instanceof await, true);
 |