;;; TOOL: wat2wasm
;;; ERROR: 1

(module
  (memory 1)
  (data $data passive "a")
  (func
    i32.const 0 i32.const 0 i32.const 0 memory.init 0
    memory.drop 0
    i32.const 0 i32.const 0 i32.const 0 memory.copy
    i32.const 0 i32.const 0 i32.const 0 memory.fill
  )

  (table 1 anyfunc)
  (elem $elem passive 0)
  (func
    i32.const 0 i32.const 0 i32.const 0 table.init 0
    table.drop 0
    i32.const 0 i32.const 0 i32.const 0 table.copy
  )
)
(;; STDERR ;;;
out/test/parse/expr/bulk-memory-disabled.txt:8:41: error: opcode not allowed: memory.init
    i32.const 0 i32.const 0 i32.const 0 memory.init 0
                                        ^^^^^^^^^^^
out/test/parse/expr/bulk-memory-disabled.txt:9:5: error: opcode not allowed: memory.drop
    memory.drop 0
    ^^^^^^^^^^^
out/test/parse/expr/bulk-memory-disabled.txt:10:41: error: opcode not allowed: memory.copy
    i32.const 0 i32.const 0 i32.const 0 memory.copy
                                        ^^^^^^^^^^^
out/test/parse/expr/bulk-memory-disabled.txt:11:41: error: opcode not allowed: memory.fill
    i32.const 0 i32.const 0 i32.const 0 memory.fill
                                        ^^^^^^^^^^^
out/test/parse/expr/bulk-memory-disabled.txt:17:41: error: opcode not allowed: table.init
    i32.const 0 i32.const 0 i32.const 0 table.init 0
                                        ^^^^^^^^^^
out/test/parse/expr/bulk-memory-disabled.txt:18:5: error: opcode not allowed: table.drop
    table.drop 0
    ^^^^^^^^^^
out/test/parse/expr/bulk-memory-disabled.txt:19:41: error: opcode not allowed: table.copy
    i32.const 0 i32.const 0 i32.const 0 table.copy
                                        ^^^^^^^^^^
;;; STDERR ;;)
