summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/module/module-export-name-star.js
blob: 6b93ba12cc6f80290d692299314497a0baf295a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// |reftest| module

var x = "ok";

export {x as "*"};

import {"*" as y} from "./module-export-name-star.js"

assertEq(y, "ok");

if (typeof reportCompare === "function")
  reportCompare(true, true);