blob: d53dae2649f102af6e0c8cefcdb3ab61eec4bc14 [file] [log] [blame] [edit]
;; Test for a validation error on bad usage of call.without.effects
;; RUN: not wasm-opt -all %s 2>&1 | filecheck %s
;; CHECK: data.drop segment index out of bounds
(module
(memory $0 16)
(func $1
(data.drop 1)
(unreachable)
)
)