summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/wasm/exceptions/bug-1797685.js
blob: d2f02a8fd6abbb8d0a37d522a92240ab7a7e4e50 (plain)
1
2
3
4
5
6
7
8
assertErrorMessage(() => wasmEvalText(`(module
  (func)
  (func
    try
      call 0
    delegate 4294967295
  )
)`), WebAssembly.CompileError, /delegate/);