ladybird/Libraries/LibJS/Tests/eval-redeclaration.js

7 lines
148 B
JavaScript
Raw Normal View History

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