Sign in
webkit
/
WebKit
/
60c3f717a9141a0f8afd6e8437d26c6404e4424c
/
.
/
JSTests
/
wasm
/
stress
/
local-ref.js
blob: edbd4835167145e0d05e7acdfa5d0288e3b3e889 [
file
] [
log
] [
blame
]
import
*
as assert from
'../assert.js'
;
import
{
instantiate
}
from
"../wabt-wrapper.js"
;
async
function
test
()
{
await instantiate
(`
(
module
(
func
(
local externref
)
(
local externref
)
)
)
`);
}
assert
.
asyncTest
(
test
());