mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 07:52:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			149 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			149 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| function assert(x) { if (!x) console.log("FAIL"); }
 | |
| 
 | |
| try {
 | |
|     i < 3;
 | |
| } catch (e) {
 | |
|     assert(e.name === "ReferenceError");
 | |
| }
 | |
| 
 | |
| console.log("PASS");
 | 
