blob: 7a91f43febe1fbce59f24b20bd3fbeb871c207b7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
;;; TOOL: wat2wasm
;;; ERROR: 1
(module
(import "foo" "bar" (table 0 3 shared funcref))
)
(;; STDERR ;;;
out/test/parse/module/bad-import-table-shared.txt:4:4: error: tables may not be shared
(import "foo" "bar" (table 0 3 shared funcref))
^^^^^^
;;; STDERR ;;)
|