]> git.proxmox.com Git - rustc.git/blob - src/binaryen/test/binaryen.js/call_import_error.js.txt
New upstream version 1.23.0+dfsg1
[rustc.git] / src / binaryen / test / binaryen.js / call_import_error.js.txt
1 (module
2 (type $v (func))
3 (import "env" "fn" (func $fn))
4 (memory $0 0)
5 (export "main" (func $main))
6 (func $main (; 1 ;) (type $v)
7 (call $fn)
8 )
9 )
10
11 [wasm-validator error in function $main] unexpected false: call target must exist, on
12 [none] (call $fn)
13 (perhaps it should be a CallImport instead of Call?)