summaryrefslogtreecommitdiffstats
path: root/src/test/ui/expr/if/if-else-type-mismatch.stderr
blob: f1fffdb1e7ef8d6443b84aef1cc8e73d1c7be692 (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
error[E0308]: `if` and `else` have incompatible types
  --> $DIR/if-else-type-mismatch.rs:5:9
   |
LL |       let _ = if true {
   |  _____________-
LL | |         1i32
   | |         ---- expected because of this
LL | |     } else {
LL | |         2u32
   | |         ^^^^ expected `i32`, found `u32`
LL | |     };
   | |_____- `if` and `else` have incompatible types
   |
help: change the type of the numeric literal from `u32` to `i32`
   |
LL |         2i32
   |          ~~~

error[E0308]: `if` and `else` have incompatible types
  --> $DIR/if-else-type-mismatch.rs:8:38
   |
LL |     let _ = if true { 42i32 } else { 42u32 };
   |                       -----          ^^^^^ expected `i32`, found `u32`
   |                       |
   |                       expected because of this
   |
help: change the type of the numeric literal from `u32` to `i32`
   |
LL |     let _ = if true { 42i32 } else { 42i32 };
   |                                        ~~~

error[E0308]: `if` and `else` have incompatible types
  --> $DIR/if-else-type-mismatch.rs:13:9
   |
LL |       let _ = if true {
   |  _____________-
LL | |         3u32;
   | |         -----
   | |         |   |
   | |         |   help: consider removing this semicolon
   | |         expected because of this
LL | |     } else {
LL | |         4u32
   | |         ^^^^ expected `()`, found `u32`
LL | |     };
   | |_____- `if` and `else` have incompatible types

error[E0308]: `if` and `else` have incompatible types
  --> $DIR/if-else-type-mismatch.rs:19:9
   |
LL |       let _ = if true {
   |  _____________-
LL | |         5u32
   | |         ---- expected because of this
LL | |     } else {
LL | |         6u32;
   | |         ^^^^-
   | |         |   |
   | |         |   help: consider removing this semicolon
   | |         expected `u32`, found `()`
LL | |     };
   | |_____- `if` and `else` have incompatible types

error[E0308]: `if` and `else` have incompatible types
  --> $DIR/if-else-type-mismatch.rs:25:9
   |
LL |       let _ = if true {
   |  _____________-
LL | |         7i32;
   | |         ----- expected because of this
LL | |     } else {
LL | |         8u32
   | |         ^^^^ expected `()`, found `u32`
LL | |     };
   | |_____- `if` and `else` have incompatible types

error[E0308]: `if` and `else` have incompatible types
  --> $DIR/if-else-type-mismatch.rs:31:9
   |
LL |       let _ = if true {
   |  _____________-
LL | |         9i32
   | |         ---- expected because of this
LL | |     } else {
LL | |         10u32;
   | |         ^^^^^^ expected `i32`, found `()`
LL | |     };
   | |_____- `if` and `else` have incompatible types

error[E0308]: `if` and `else` have incompatible types
  --> $DIR/if-else-type-mismatch.rs:37:9
   |
LL |       let _ = if true {
   |  _____________________-
LL | |
LL | |     } else {
   | |_____- expected because of this
LL |           11u32
   |           ^^^^^ expected `()`, found `u32`

error[E0308]: `if` and `else` have incompatible types
  --> $DIR/if-else-type-mismatch.rs:42:12
   |
LL |       let _ = if true {
   |               ------- `if` and `else` have incompatible types
LL |           12i32
   |           ----- expected because of this
LL |       } else {
   |  ____________^
LL | |
LL | |     };
   | |_____^ expected `i32`, found `()`

error: aborting due to 8 previous errors

For more information about this error, try `rustc --explain E0308`.