mirror of https://github.com/tc39/test262.git
6 lines
175 B
JavaScript
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);
|