summaryrefslogtreecommitdiff
path: root/test/ctor-eval/ignore-external-input.wast.out
blob: a557ec99e290b03b05f4104585e8fd0cb2138470 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(module
 (type $0 (func (result i32)))
 (type $1 (func))
 (import "wasi_snapshot_preview1" "something_else" (func $wasi_something_else (type $0) (result i32)))
 (memory $0 256 256)
 (data $0 (i32.const 28) "aaaa")
 (export "test3" (func $test3))
 (func $test3 (type $1)
  (drop
   (call $wasi_something_else)
  )
  (i32.store
   (i32.const 28)
   (i32.const 100)
  )
 )
)