xref: /wasmtime-44.0.1/examples/anyref.wat (revision 23640b6c)
1(module
2  (table $table (export "table") 10 anyref)
3
4  (global $global (export "global") (mut anyref) (ref.null any))
5
6  (func (export "take_anyref") (param anyref)
7    nop
8  )
9
10  (func (export "return_anyref") (result anyref)
11    i32.const 42
12    ref.i31
13  )
14)
15