blob: 6f9d458ee7d6dfae81955feebc9b932c3efe80a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
;;; TOOL: wat2wasm
;;; ERROR: 1
(module
(func
i32.const 0
i32.const 0
table.get $t
table.set $t
)
)
(;; STDERR ;;;
out/test/typecheck/bad-reference-types-no-table.txt:8:15: error: undefined table variable "$t"
table.get $t
^^
out/test/typecheck/bad-reference-types-no-table.txt:9:15: error: undefined table variable "$t"
table.set $t
^^
;;; STDERR ;;)
|