mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-08 21:58:20 +00:00
spec:
https://github.com/WebAssembly/spec/commit/e3c10811
simd:
https://github.com/WebAssembly/simd/commit/de4409bc
gc:
https://github.com/WebAssembly/gc/commit/db1c01a9
tail-call:
https://github.com/WebAssembly/tail-call/commit/394d0aa3
This change was automatically generated by `update-testsuite.sh`
33 lines
647 B
Plaintext
Vendored
33 lines
647 B
Plaintext
Vendored
(module
|
|
(type $t (func))
|
|
(table $t1 10 (ref null func))
|
|
(table $t2 10 (ref null $t))
|
|
(elem $el funcref)
|
|
(func $f
|
|
(table.init $t1 $el (i32.const 0) (i32.const 1) (i32.const 2))
|
|
(table.copy $t1 $t2 (i32.const 0) (i32.const 1) (i32.const 2))
|
|
)
|
|
)
|
|
|
|
(assert_invalid
|
|
(module
|
|
(table $t1 10 funcref)
|
|
(table $t2 10 externref)
|
|
(func $f
|
|
(table.copy $t1 $t2 (i32.const 0) (i32.const 1) (i32.const 2))
|
|
)
|
|
)
|
|
"type mismatch"
|
|
)
|
|
|
|
(assert_invalid
|
|
(module
|
|
(table $t 10 funcref)
|
|
(elem $el externref)
|
|
(func $f
|
|
(table.init $t $el (i32.const 0) (i32.const 1) (i32.const 2))
|
|
)
|
|
)
|
|
"type mismatch"
|
|
)
|