mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
9 lines
191 B
JavaScript
9 lines
191 B
JavaScript
test("default clause before matching case clause", () => {
|
|
switch (1 + 2) {
|
|
default:
|
|
expect().fail();
|
|
break;
|
|
case 3:
|
|
return;
|
|
}
|
|
});
|