blob: b85fa113d1f266ebe8315e29a6605b2d38c1c731 [file] [log] [blame]
(module
(type $func (func))
(type $cont (cont $func))
(import "primary" "global$func" (global $gimport (ref $func)))
(func $export (export "export") (result i32)
(drop
(cont.new $cont
(global.get $gimport)
)
)
(i32.const 42)
)
)