summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/wasm/gc/limits/array-new-fixed.js
blob: 4b0600c72416334eea582b67e3e2d3b9e3ac1c0f (plain)
1
2
3
4
5
6
7
8
9
// |jit-test| --setpref=wasm_gc; 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/);