blob: ee24269474df7f9846dc227127fd228ef452c74a [file] [log] [blame] [edit]
(module
(type $none_=>_none (func))
(type $i32_=>_none (func (param i32)))
(import "env" "waka" (func $foo))
(import "env" "waka" (func $wrong (param i32)))
(table $0 2 2 funcref)
(elem $0 (i32.const 0) $foo $foo)
(export "baz" (func $0))
(start $foo)
(func $0
(call $foo)
(call $foo)
(call $wrong
(i32.const 1)
)
)
)