Files
wasmtime/cranelift/wasm/wasmtests/nullref.wat
Olivier Lemasle 954f7d3876 cranelift: move wasmtests in cranelift-wasm
Move test data used by cranelift-wasm's tests in
the crate directory, to make the tests autonomous.

Fixes #2910
2021-05-18 22:48:52 +02:00

12 lines
142 B
Plaintext

(module
(func (result externref)
(ref.null extern)
)
(func (result externref)
(block (result externref)
(ref.null extern)
)
)
)