Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/tests/all/cli_tests/table-grow-failure.wat
1692 views
(module
  (table 1 10 funcref)
  (func (export "_start")
    ref.null func
    i32.const 11
    table.grow
    drop
  )
)