Files
wasmer/tests/wast/spec/table-sub.wast

22 lines
383 B
Plaintext
Vendored

(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"
)