blob: e74c6c2b885b654ada476f4aedd27025dcb62614 (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
;;; TOOL: wat2wasm
;;; ERROR: 1
;; This regression test makes sure that the end_loc of `if` blocks is properly
;; set when using the folded format.
;; if/else shorthand format, error in true branch.
(func (result i32)
(if (result i32)
(i32.const 0)
(block
(unreachable)
)
(i32.const 0)
)
)
;; if/else with `then`/`else` keywords, error in true branch.
(func (result i32)
(if (result i32)
(i32.const 0)
(then
(block
(unreachable)
)
)
(else
(i32.const 0)
)
)
)
;; if/else shorthand format, error in false branch.
(func (result i32)
(if (result i32)
(i32.const 0)
(i32.const 0)
(block
(unreachable)
)
)
)
;; if/else with `then`/`else` keywords, error in false branch.
(func (result i32)
(if (result i32)
(i32.const 0)
(then
(i32.const 0)
)
(else
(block
(unreachable)
)
)
)
)
(;; STDERR ;;;
out/test/regress/regress-23.txt:13:5: error: type mismatch in `if true` branch, expected [i32] but got []
)
^
out/test/regress/regress-23.txt:25:7: error: type mismatch in `if true` branch, expected [i32] but got []
)
^
out/test/regress/regress-23.txt:41:3: error: type mismatch in `if false` branch, expected [i32] but got []
)
^
out/test/regress/regress-23.txt:56:3: error: type mismatch in `if false` branch, expected [i32] but got []
)
^
;;; STDERR ;;)
|