1(component
2  (core module $m
3    (func (export "run") (result i32)
4      i32.const 0)
5  )
6  (core instance $i (instantiate $m))
7  (func $run (result (result))
8    (canon lift (core func $i "run")))
9
10  (instance (export (interface "wasi:cli/run@0.2.0"))
11    (export "run" (func $run)))
12)
13