Sign in
webkit
/
WebKit
/
540d6b6f3e74031bf3bfd4bcf3dba6195c222b4d
/
.
/
JSTests
/
modules
/
export-conflict-ok.js
blob: 79e6965eb5d71724b930c978930ab27340632f41 [
file
] [
log
] [
blame
]
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
);