mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 11:34:59 +00:00
10 lines
160 B
JavaScript
10 lines
160 B
JavaScript
test("Don't fuse unrelated jump and compare", () => {
|
|
function go(a) {
|
|
a < 3;
|
|
a &&= 1;
|
|
|
|
a < 3;
|
|
a ||= 1;
|
|
}
|
|
go();
|
|
});
|