mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
6 lines
183 B
JavaScript
6 lines
183 B
JavaScript
test("Assigning to an invalid destructuring assignment target should fail immediately", () => {
|
|
expect(() => {
|
|
eval("[[function=a{1,}=");
|
|
}).toThrow(SyntaxError);
|
|
});
|