Sign in
webkit
/
WebKit
/
35d79834acdddbdbe485dedb2cc43775842705a9
/
.
/
JSTests
/
modules
/
export-default-function-hoisting
/
cocoa.js
blob: d19f9fc1263004c2e0749ae9fbc3063e7dba8fe1 [
file
] [
log
] [
blame
]
import
drinkCappuccino from
'./cappuccino.js'
import
{
shouldBe
}
from
"../resources/assert.js"
;
shouldBe
(
drinkCappuccino
(),
42
);
export
default
function
drinkCocoa
()
{
return
42
;
}