Files
ladybird/Tests/LibJS/Runtime/functions/function-assignment-in-arguments.js
2026-01-22 07:46:48 -05:00

6 lines
158 B
JavaScript

test("overwriting this during function call still binds the original", () => {
let tmp = new Map();
// prettier-ignore
tmp.set("", tmp = []);
});