blob: bae2e2fc6341bca69efbf08ba3f8791f2f4937b3 [file] [log] [blame] [edit]
(module
(memory 1024 1024)
(type $FUNCSIG$v (func))
(type $FUNCSIG$i (func (result i32)))
(type $FUNCSIG$d (func (result f64)))
(import $waka "somewhere" "waka")
(import $waka-ret "somewhere" "waka-ret" (result i32))
(import $waka-ret-d "somewhere" "waka-ret-d" (result f64))
(func $nada (type $FUNCSIG$v)
(call $waka)
(drop
(call $waka-ret)
)
(drop
(call $waka-ret-d)
)
)
)