blob: 5510644a7ea36ef66a76ee9bcd23c3fd0fe9752c [file] [log] [blame] [edit]
;; Test that we validate functions declaration and usage for globals.
;; RUN: not wasm-opt %s -all 2>&1 | filecheck %s
(module
;; CHECK: function not defined
(global (mut i32) (block))
;; CHECK: function not defined
(global (mut i32) (return_call 0))
(func $0
)
)