mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-08 05:27:14 +09: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);
|
|
});
|