test262/implementation-contributed/javascriptcore/modules/export-conflict-ok.js

6 lines
175 B
JavaScript

import { A, B } from "./export-conflict-ok/main.js" // C is conflict, but not looked up.
import { shouldBe } from "./resources/assert.js";
shouldBe(A, 42);
shouldBe(B, 50);