mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-27 14:22:08 +00:00 
			
		
		
		
	 462c6df24b
			
		
	
	
		462c6df24b
		
	
	
	
	
		
			
			Together with removing an incorrect VERIFY this allows multiple star imports in a single module.
		
			
				
	
	
		
			4 lines
		
	
	
	
		
			144 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			4 lines
		
	
	
	
		
			144 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import * as ns1 from "./default-and-star-export.mjs";
 | |
| import * as ns2 from "./default-and-star-export.mjs";
 | |
| 
 | |
| export const passed = ns1 === ns2;
 |