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());