Files
wasmtime/cranelift/wasmtests/nullref.wat
Ryan Hunt 710182ad26 Wasm: Add support for nullref type
Reference types now supports proper a nullref type. This commit changes
the Wasm translator to support this.
2020-01-23 16:31:34 -06:00

12 lines
118 B
Plaintext

(module
(func (result nullref)
ref.null
)
(func (result nullref)
(block (result nullref)
ref.null
)
)
)