mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 00:19:53 +01:00
13 lines
224 B
JavaScript
13 lines
224 B
JavaScript
test("check that codegen doesn't crash", () => {
|
|
function func(x) {
|
|
expect(x()).toBe(0);
|
|
}
|
|
|
|
function go() {
|
|
for (let i = 0; ; ) {
|
|
func(() => i);
|
|
break;
|
|
}
|
|
}
|
|
});
|