blob: c29360ad21f09431c977231fa76e19a92c7724bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
;;; TOOL: wat2wasm
;;; ERROR: 1
(module
;; too few results
(func
block (result i32 i32)
i32.const 0
end
return)
;; too many results
(func
block (result i32 i32)
i32.const 0
i32.const 0
i32.const 0
end
return)
;; result type mismatch
(func
block (result f32 i32)
i32.const 0
i32.const 1
end
return)
;; too few params
(func
block (param i32)
drop
end)
;; param type mismatch
(func
f32.const 0
block (param i32)
drop
end)
)
(;; STDERR ;;;
out/test/typecheck/bad-block-multi-mismatch.txt:8:5: error: type mismatch in block, expected [i32, i32] but got [i32]
end
^^^
out/test/typecheck/bad-block-multi-mismatch.txt:17:5: error: type mismatch at end of block, expected [] but got [i32]
end
^^^
out/test/typecheck/bad-block-multi-mismatch.txt:25:5: error: type mismatch in block, expected [f32, i32] but got [i32, i32]
end
^^^
out/test/typecheck/bad-block-multi-mismatch.txt:30:5: error: type mismatch in block, expected [i32] but got []
block (param i32)
^^^^^
out/test/typecheck/bad-block-multi-mismatch.txt:37:5: error: type mismatch in block, expected [i32] but got [f32]
block (param i32)
^^^^^
;;; STDERR ;;)
|