aboutsummaryrefslogtreecommitdiff
path: root/test/snippets/global-is-remapped-to-globalThis.js
blob: 06b887925f3b97a4414e5b6fc16085e740a0e3aa (plain) (blame)
1
2
3
4
export function test() {
  console.assert(global === globalThis);
  return testDone(import.meta.url);
}