mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-29 12:24:18 +00:00
7 lines
148 B
JavaScript
7 lines
148 B
JavaScript
|
|
eval("var foo;");
|
||
|
|
evaluateSource("let foo = 1;");
|
||
|
|
|
||
|
|
test("redeclaration of variable in global scope succeeded", () => {
|
||
|
|
expect(foo).toBe(1);
|
||
|
|
});
|