mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 21:30:58 +00:00 
			
		
		
		
	
		
			
	
	
		
			10 lines
		
	
	
	
		
			191 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			10 lines
		
	
	
	
		
			191 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
|   | test("default clause before matching case clause", () => { | ||
|  |     switch (1 + 2) { | ||
|  |         default: | ||
|  |             expect().fail(); | ||
|  |             break; | ||
|  |         case 3: | ||
|  |             return; | ||
|  |     } | ||
|  | }); |