mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 00:25:12 +00:00
10 lines
196 B
JavaScript
10 lines
196 B
JavaScript
test("basic support for statement with many labels", () => {
|
|
function foo() {
|
|
a: b: c: for (;;) {
|
|
break b;
|
|
}
|
|
return 1;
|
|
}
|
|
expect(foo()).toBe(1);
|
|
});
|