blob: ba29ec02543abd9da3eba1a4245f3ad0a3183248 (
plain)
1
2
3
4
5
6
7
8
9
10
|
;;; TOOL: wat2wasm
;;; ERROR: 1
(module
(func $n nop)
(func $n nop))
(;; STDERR ;;;
out/test/parse/module/bad-func-redefinition.txt:5:4: error: redefinition of function "$n"
(func $n nop))
^^^^
;;; STDERR ;;)
|