Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/tests/misc_testsuite/gc/alloc-v128-struct.wast
1692 views
;;! gc = true
;;! simd = true

(module
  (type $s (struct (field v128)))
  (func (export "alloc")
    struct.new_default $s
    drop
  )
)

(assert_return (invoke "alloc"))