summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/wasm/exceptions/bug-1791361.js
blob: 0e09a8a7464e16809100a831a4d20ef3e18338d7 (plain)
1
2
3
4
5
6
7
8
9
10
oomTest(() => {
    wasmEvalText(`
      (tag $d)
      (func $anotherLocalFuncThrowsExn)
      (func throw $d)
      (func (try (do
        call $anotherLocalFuncThrowsExn
      )))
    `);
});