You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 lines
262 B

(module
(table $table (export "table") 10 anyref)
(global $global (export "global") (mut anyref) (ref.null any))
(func (export "take_anyref") (param anyref)
nop
)
(func (export "return_anyref") (result anyref)
i32.const 42
ref.i31
)
)