summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/tests/unit/non_shared_nest_import_non_shared_1.mjs
blob: ea78e9f8810464b3ce7d95fe872160e42e16f461 (plain)
1
2
3
4
5
6
7
const { func2 } = ChromeUtils.importESModule("resource://test/non_shared_nest_import_non_shared_target_1.mjs", {
  global: "current",
});

export function func() {
  return func2();
}