mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 17:28:30 +00:00
6 lines
158 B
JavaScript
6 lines
158 B
JavaScript
test("overwriting this during function call still binds the original", () => {
|
|
let tmp = new Map();
|
|
// prettier-ignore
|
|
tmp.set("", tmp = []);
|
|
});
|