summaryrefslogtreecommitdiffstats
path: root/dom/base/test/file_script_module_import_and_element_imported_1.mjs
blob: 6371cf2a4f7c790ca44e26fa556cc96c988415e6 (plain)
1
2
3
4
5
6
7
import { g } from "./file_script_module_import_and_element_imported_2.mjs";
import { h } from "./file_script_module_import_and_element_imported_3.mjs";

g();
h();

export function f() {}