Files
ladybird/Tests/LibJS/Runtime/eval-redeclaration.js
2026-01-22 07:46:48 -05:00

7 lines
148 B
JavaScript

eval("var foo;");
evaluateSource("let foo = 1;");
test("redeclaration of variable in global scope succeeded", () => {
expect(foo).toBe(1);
});