blob: 5510644a7ea36ef66a76ee9bcd23c3fd0fe9752c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
;; 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
)
)
|