| (module |
| (type $array (array (mut i32))) |
| (type $1 (func (result i32))) |
| (global $ctor-eval$global (ref (exact $array)) (array.new_fixed $array 4 |
| (i32.const 10) |
| (i32.const 20) |
| (i32.const 30) |
| (i32.const 40) |
| )) |
| (global $ctor-eval$global_3 (ref (exact $array)) (array.new_fixed $array 2 |
| (i32.const 42) |
| (i32.const 1337) |
| )) |
| (global $global1 (ref $array) (global.get $ctor-eval$global)) |
| (global $global2 (ref $array) (global.get $ctor-eval$global_3)) |
| (export "keepalive" (func $keepalive)) |
| (func $keepalive (type $1) (result i32) |
| (i32.add |
| (array.get $array |
| (global.get $global1) |
| (i32.const 0) |
| ) |
| (array.get $array |
| (global.get $global2) |
| (i32.const 0) |
| ) |
| ) |
| ) |
| ) |