ladybird/Userland/Libraries/LibJS/Tests/modules/multiple-star-imports.mjs
davidot 462c6df24b LibJS: Only check for duplicate exports if they have a name
Together with removing an incorrect VERIFY this allows multiple star
imports in a single module.
2022-09-02 02:07:37 +01:00

4 lines
144 B
JavaScript

import * as ns1 from "./default-and-star-export.mjs";
import * as ns2 from "./default-and-star-export.mjs";
export const passed = ns1 === ns2;