summaryrefslogtreecommitdiff
path: root/test/binaryen.js/fatal.js
blob: 5e8071daa50a77a75f3bd23015490d7a20ceb2b5 (plain)
1
2
3
4
var wasm = new Binaryen.Module()
wasm.addFunctionType("vI", Binaryen.i32, []);
// It will cause a fatal error to try to add the same name a second time
wasm.addFunctionType("vI", Binaryen.i32, []);