mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-04 16:11:54 +00:00
6 lines
148 B
JavaScript
6 lines
148 B
JavaScript
eval("var foo;");
|
|
evaluateSource("let foo = 1;");
|
|
|
|
test("redeclaration of variable in global scope succeeded", () => {
|
|
expect(foo).toBe(1);
|
|
});
|