summaryrefslogtreecommitdiff
path: root/test/merge/main-lacks-segments.wast.toMerge
blob: 63c2c3a3a77e4235f7e87685ce559b33caedf725 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(module
  (import "env" "memoryBase" (global $memoryBase i32))
  (import "env" "tableBase" (global $tableBase i32))
  (import "env" "memory" (memory $0 256))
  (import "env" "table" (table 0 anyfunc))
  (elem (get_global $tableBase) $foo)
  (data (get_global $memoryBase) "hello, this is some data!")
  (func $foo
    (drop (get_global $tableBase))
    (drop (get_global $memoryBase))
  )
)