https://webassembly.github.io/wabt/demo/wat2wasm/ errors on the following code even with exceptions checked on:
(module
(tag $e0)
(func (export "simple-throw-catch") (param i32) (result i32)
(block $h
(try_table (result i32) (catch $e0 $h)
(if (i32.eqz (local.get 0)) (then (throw $e0)) (else))
(i32.const 42)
)
(return)
)
(i32.const 23)
)
)
but the downloaded wat2wasm with --enable-exceptions handles this fine.