1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
(module (memory 1 2) (import "env" "import" (func $import)) (func $foo (call $import) ) (func $bar (call $import) ) (func $baz (call $import) ) (func $other1 (call $foo) ) (func $other2 (call $baz) ) )