Source code

Revision control

Copy as Markdown

Other Tools

// |jit-test| include:wasm.js;
// array.new_fixed has limit of 10_000 operands
wasmFailValidateText(`(module
(type $a (array i32))
(func
array.new_fixed $a 10001
)
)`, /too many/);