blob: ce168f06099292bbb2e85adc3e40b6d823609d1b [file] [edit]
import * as assert from '../assert.js';
import { instantiate } from "../wabt-wrapper.js";
async function test() {
await instantiate(`
(module
(func
(local externref)
(local externref)
)
)
`);
}
await assert.asyncTest(test());