summaryrefslogtreecommitdiff
path: root/test/table-import.wast
blob: 6d40941e2a214e36ec0c042dd195e5cbb08fa970 (plain)
1
2
3
4
5
6
7
8
9
(module
  (type $0 (func))
  (import "env" "table" (table 1 1 anyfunc))
  (elem (i32.const 0) $foo)
  (memory $0 0)
  (func $foo (type $0)
    (nop)
  )
)