Files
wasmtime/tests/misc_testsuite/memory64/linking-errors.wast
Alex Crichton 9db418cfd9 Improve linking-related error messages (#3353)
Include more contextual information about why the link failed related to
why the types didn't match.

Closes #3172
2021-09-15 11:42:45 -05:00

8 lines
155 B
Plaintext

(module $m
(memory (export "mem") 0)
)
(assert_unlinkable
(module (import "m" "mem" (memory i64 0)))
"expected 64-bit memory, found 32-bit memory")