summaryrefslogtreecommitdiff
path: root/test/lit/merge/table64.wat.second
blob: cbc5a78fb50116300fb424bda17adee8bd65956e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
;; A module with a wasm64 table. We must copy it properly when we merge.
(module
 (table $table i64 15 15 funcref)

 (elem $0 (i64.const 0) $second)

 (export "table" (table $table))

 (func $second)
)