Stream: git-wasmtime

Topic: wasmtime / issue #13980 Fixed-length lists can overflow i...


view this post on Zulip Wasmtime GitHub notifications bot (Jul 25 2026 at 19:38):

alexcrichton opened issue #13980:

This input:

(component
  (type $l (list u64 1073741824))
  (type $t (tuple $l $l))
  (type $f (func (param "a" $t)))
  (import "x" (func (type $f)))
)

fails with:

$ cargo run compile bigflist3.wat -W component-model-fixed-length-lists
    Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.11s
     Running `/home/alex/code/wasmtime2/target/debug/wasmtime compile bigflist3.wat -W component-model-fixed-length-lists`

thread 'main' (2608010) panicked at crates/environ/src/component/types.rs:679:5:
attempt to add with overflow
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

view this post on Zulip Wasmtime GitHub notifications bot (Jul 25 2026 at 19:38):

alexcrichton added the wasm-proposal:component-model label to Issue #13980.


Last updated: Jul 29 2026 at 05:03 UTC