rust/src/test/ui/suggestions/numeric-cast.stderr

908 lines
24 KiB
Plaintext
Raw Normal View History

2018-01-06 23:10:51 -06:00
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:29:18
|
29 | foo::<usize>(x_u64);
| ^^^^^ expected usize, found u64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:31:18
|
31 | foo::<usize>(x_u32);
| ^^^^^ expected usize, found u32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:33:18
|
33 | foo::<usize>(x_u16);
| ^^^^^ expected usize, found u16
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:35:18
|
35 | foo::<usize>(x_u8);
| ^^^^ expected usize, found u8
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:37:18
|
37 | foo::<usize>(x_isize);
| ^^^^^^^ expected usize, found isize
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:39:18
|
39 | foo::<usize>(x_i64);
| ^^^^^ expected usize, found i64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:41:18
|
41 | foo::<usize>(x_i32);
| ^^^^^ expected usize, found i32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:43:18
|
43 | foo::<usize>(x_i16);
| ^^^^^ expected usize, found i16
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:45:18
|
45 | foo::<usize>(x_i8);
| ^^^^ expected usize, found i8
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:47:18
|
47 | foo::<usize>(x_f64);
| ^^^^^ expected usize, found f64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:49:18
2018-01-06 23:10:51 -06:00
|
49 | foo::<usize>(x_f32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected usize, found f32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:52:18
2018-01-06 23:10:51 -06:00
|
52 | foo::<isize>(x_usize);
2018-01-06 23:10:51 -06:00
| ^^^^^^^ expected isize, found usize
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:54:18
2018-01-06 23:10:51 -06:00
|
54 | foo::<isize>(x_u64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected isize, found u64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:56:18
2018-01-06 23:10:51 -06:00
|
56 | foo::<isize>(x_u32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected isize, found u32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:58:18
2018-01-06 23:10:51 -06:00
|
58 | foo::<isize>(x_u16);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected isize, found u16
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:60:18
2018-01-06 23:10:51 -06:00
|
60 | foo::<isize>(x_u8);
2018-01-06 23:10:51 -06:00
| ^^^^ expected isize, found u8
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:63:18
2018-01-06 23:10:51 -06:00
|
63 | foo::<isize>(x_i64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected isize, found i64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:65:18
2018-01-06 23:10:51 -06:00
|
65 | foo::<isize>(x_i32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected isize, found i32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:67:18
2018-01-06 23:10:51 -06:00
|
67 | foo::<isize>(x_i16);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected isize, found i16
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:69:18
2018-01-06 23:10:51 -06:00
|
69 | foo::<isize>(x_i8);
2018-01-06 23:10:51 -06:00
| ^^^^ expected isize, found i8
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:71:18
2018-01-06 23:10:51 -06:00
|
71 | foo::<isize>(x_f64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected isize, found f64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:73:18
2018-01-06 23:10:51 -06:00
|
73 | foo::<isize>(x_f32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected isize, found f32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:76:16
2018-01-06 23:10:51 -06:00
|
76 | foo::<u64>(x_usize);
2018-01-06 23:10:51 -06:00
| ^^^^^^^ expected u64, found usize
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:79:16
2018-01-06 23:10:51 -06:00
|
79 | foo::<u64>(x_u32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u64, found u32
help: you can cast an `u32` to `u64`, which will zero-extend the source value
|
79 | foo::<u64>(x_u32.into());
2018-01-06 23:10:51 -06:00
| ^^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:81:16
2018-01-06 23:10:51 -06:00
|
81 | foo::<u64>(x_u16);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u64, found u16
help: you can cast an `u16` to `u64`, which will zero-extend the source value
|
81 | foo::<u64>(x_u16.into());
2018-01-06 23:10:51 -06:00
| ^^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:83:16
2018-01-06 23:10:51 -06:00
|
83 | foo::<u64>(x_u8);
2018-01-06 23:10:51 -06:00
| ^^^^ expected u64, found u8
help: you can cast an `u8` to `u64`, which will zero-extend the source value
|
83 | foo::<u64>(x_u8.into());
2018-01-06 23:10:51 -06:00
| ^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:85:16
2018-01-06 23:10:51 -06:00
|
85 | foo::<u64>(x_isize);
2018-01-06 23:10:51 -06:00
| ^^^^^^^ expected u64, found isize
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:87:16
2018-01-06 23:10:51 -06:00
|
87 | foo::<u64>(x_i64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u64, found i64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:89:16
2018-01-06 23:10:51 -06:00
|
89 | foo::<u64>(x_i32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u64, found i32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:91:16
2018-01-06 23:10:51 -06:00
|
91 | foo::<u64>(x_i16);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u64, found i16
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:93:16
2018-01-06 23:10:51 -06:00
|
93 | foo::<u64>(x_i8);
2018-01-06 23:10:51 -06:00
| ^^^^ expected u64, found i8
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:95:16
2018-01-06 23:10:51 -06:00
|
95 | foo::<u64>(x_f64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u64, found f64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:97:16
|
97 | foo::<u64>(x_f32);
| ^^^^^ expected u64, found f32
2018-01-06 23:10:51 -06:00
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:100:16
2018-01-06 23:10:51 -06:00
|
100 | foo::<i64>(x_usize);
2018-01-06 23:10:51 -06:00
| ^^^^^^^ expected i64, found usize
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:102:16
2018-01-06 23:10:51 -06:00
|
102 | foo::<i64>(x_u64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i64, found u64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:104:16
2018-01-06 23:10:51 -06:00
|
104 | foo::<i64>(x_u32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i64, found u32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:106:16
2018-01-06 23:10:51 -06:00
|
106 | foo::<i64>(x_u16);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i64, found u16
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:108:16
2018-01-06 23:10:51 -06:00
|
108 | foo::<i64>(x_u8);
2018-01-06 23:10:51 -06:00
| ^^^^ expected i64, found u8
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:110:16
2018-01-06 23:10:51 -06:00
|
110 | foo::<i64>(x_isize);
2018-01-06 23:10:51 -06:00
| ^^^^^^^ expected i64, found isize
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:113:16
2018-01-06 23:10:51 -06:00
|
113 | foo::<i64>(x_i32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i64, found i32
help: you can cast an `i32` to `i64`, which will sign-extend the source value
|
113 | foo::<i64>(x_i32.into());
2018-01-06 23:10:51 -06:00
| ^^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:115:16
2018-01-06 23:10:51 -06:00
|
115 | foo::<i64>(x_i16);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i64, found i16
help: you can cast an `i16` to `i64`, which will sign-extend the source value
|
115 | foo::<i64>(x_i16.into());
2018-01-06 23:10:51 -06:00
| ^^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:117:16
2018-01-06 23:10:51 -06:00
|
117 | foo::<i64>(x_i8);
2018-01-06 23:10:51 -06:00
| ^^^^ expected i64, found i8
help: you can cast an `i8` to `i64`, which will sign-extend the source value
|
117 | foo::<i64>(x_i8.into());
2018-01-06 23:10:51 -06:00
| ^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:119:16
2018-01-06 23:10:51 -06:00
|
119 | foo::<i64>(x_f64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i64, found f64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:121:16
2018-01-06 23:10:51 -06:00
|
121 | foo::<i64>(x_f32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i64, found f32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:124:16
2018-01-06 23:10:51 -06:00
|
124 | foo::<u32>(x_usize);
2018-01-06 23:10:51 -06:00
| ^^^^^^^ expected u32, found usize
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:126:16
2018-01-06 23:10:51 -06:00
|
126 | foo::<u32>(x_u64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u32, found u64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:129:16
2018-01-06 23:10:51 -06:00
|
129 | foo::<u32>(x_u16);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u32, found u16
help: you can cast an `u16` to `u32`, which will zero-extend the source value
|
129 | foo::<u32>(x_u16.into());
2018-01-06 23:10:51 -06:00
| ^^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:131:16
2018-01-06 23:10:51 -06:00
|
131 | foo::<u32>(x_u8);
2018-01-06 23:10:51 -06:00
| ^^^^ expected u32, found u8
help: you can cast an `u8` to `u32`, which will zero-extend the source value
|
131 | foo::<u32>(x_u8.into());
2018-01-06 23:10:51 -06:00
| ^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:133:16
2018-01-06 23:10:51 -06:00
|
133 | foo::<u32>(x_isize);
2018-01-06 23:10:51 -06:00
| ^^^^^^^ expected u32, found isize
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:135:16
2018-01-06 23:10:51 -06:00
|
135 | foo::<u32>(x_i64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u32, found i64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:137:16
2018-01-06 23:10:51 -06:00
|
137 | foo::<u32>(x_i32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u32, found i32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:139:16
2018-01-06 23:10:51 -06:00
|
139 | foo::<u32>(x_i16);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u32, found i16
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:141:16
2018-01-06 23:10:51 -06:00
|
141 | foo::<u32>(x_i8);
2018-01-06 23:10:51 -06:00
| ^^^^ expected u32, found i8
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:143:16
2018-01-06 23:10:51 -06:00
|
143 | foo::<u32>(x_f64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u32, found f64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:145:16
2018-01-06 23:10:51 -06:00
|
145 | foo::<u32>(x_f32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u32, found f32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:148:16
2018-01-06 23:10:51 -06:00
|
148 | foo::<i32>(x_usize);
2018-01-06 23:10:51 -06:00
| ^^^^^^^ expected i32, found usize
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:150:16
2018-01-06 23:10:51 -06:00
|
150 | foo::<i32>(x_u64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i32, found u64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:152:16
2018-01-06 23:10:51 -06:00
|
152 | foo::<i32>(x_u32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i32, found u32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:154:16
2018-01-06 23:10:51 -06:00
|
154 | foo::<i32>(x_u16);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i32, found u16
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:156:16
2018-01-06 23:10:51 -06:00
|
156 | foo::<i32>(x_u8);
2018-01-06 23:10:51 -06:00
| ^^^^ expected i32, found u8
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:158:16
2018-01-06 23:10:51 -06:00
|
158 | foo::<i32>(x_isize);
2018-01-06 23:10:51 -06:00
| ^^^^^^^ expected i32, found isize
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:160:16
2018-01-06 23:10:51 -06:00
|
160 | foo::<i32>(x_i64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i32, found i64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:163:16
2018-01-06 23:10:51 -06:00
|
163 | foo::<i32>(x_i16);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i32, found i16
help: you can cast an `i16` to `i32`, which will sign-extend the source value
|
163 | foo::<i32>(x_i16.into());
2018-01-06 23:10:51 -06:00
| ^^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:165:16
2018-01-06 23:10:51 -06:00
|
165 | foo::<i32>(x_i8);
2018-01-06 23:10:51 -06:00
| ^^^^ expected i32, found i8
help: you can cast an `i8` to `i32`, which will sign-extend the source value
|
165 | foo::<i32>(x_i8.into());
2018-01-06 23:10:51 -06:00
| ^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:167:16
2018-01-06 23:10:51 -06:00
|
167 | foo::<i32>(x_f64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i32, found f64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:169:16
2018-01-06 23:10:51 -06:00
|
169 | foo::<i32>(x_f32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i32, found f32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:172:16
2018-01-06 23:10:51 -06:00
|
172 | foo::<u16>(x_usize);
2018-01-06 23:10:51 -06:00
| ^^^^^^^ expected u16, found usize
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:174:16
2018-01-06 23:10:51 -06:00
|
174 | foo::<u16>(x_u64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u16, found u64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:176:16
2018-01-06 23:10:51 -06:00
|
176 | foo::<u16>(x_u32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u16, found u32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:179:16
2018-01-06 23:10:51 -06:00
|
179 | foo::<u16>(x_u8);
2018-01-06 23:10:51 -06:00
| ^^^^ expected u16, found u8
help: you can cast an `u8` to `u16`, which will zero-extend the source value
|
179 | foo::<u16>(x_u8.into());
2018-01-06 23:10:51 -06:00
| ^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:181:16
2018-01-06 23:10:51 -06:00
|
181 | foo::<u16>(x_isize);
2018-01-06 23:10:51 -06:00
| ^^^^^^^ expected u16, found isize
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:183:16
2018-01-06 23:10:51 -06:00
|
183 | foo::<u16>(x_i64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u16, found i64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:185:16
2018-01-06 23:10:51 -06:00
|
185 | foo::<u16>(x_i32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u16, found i32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:187:16
2018-01-06 23:10:51 -06:00
|
187 | foo::<u16>(x_i16);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u16, found i16
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:189:16
2018-01-06 23:10:51 -06:00
|
189 | foo::<u16>(x_i8);
2018-01-06 23:10:51 -06:00
| ^^^^ expected u16, found i8
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:191:16
2018-01-06 23:10:51 -06:00
|
191 | foo::<u16>(x_f64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u16, found f64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:193:16
2018-01-06 23:10:51 -06:00
|
193 | foo::<u16>(x_f32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u16, found f32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:196:16
2018-01-06 23:10:51 -06:00
|
196 | foo::<i16>(x_usize);
2018-01-06 23:10:51 -06:00
| ^^^^^^^ expected i16, found usize
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:198:16
2018-01-06 23:10:51 -06:00
|
198 | foo::<i16>(x_u64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i16, found u64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:200:16
2018-01-06 23:10:51 -06:00
|
200 | foo::<i16>(x_u32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i16, found u32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:202:16
2018-01-06 23:10:51 -06:00
|
202 | foo::<i16>(x_u16);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i16, found u16
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:204:16
2018-01-06 23:10:51 -06:00
|
204 | foo::<i16>(x_u8);
2018-01-06 23:10:51 -06:00
| ^^^^ expected i16, found u8
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:206:16
2018-01-06 23:10:51 -06:00
|
206 | foo::<i16>(x_isize);
2018-01-06 23:10:51 -06:00
| ^^^^^^^ expected i16, found isize
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:208:16
2018-01-06 23:10:51 -06:00
|
208 | foo::<i16>(x_i64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i16, found i64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:210:16
2018-01-06 23:10:51 -06:00
|
210 | foo::<i16>(x_i32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i16, found i32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:213:16
2018-01-06 23:10:51 -06:00
|
213 | foo::<i16>(x_i8);
2018-01-06 23:10:51 -06:00
| ^^^^ expected i16, found i8
help: you can cast an `i8` to `i16`, which will sign-extend the source value
|
213 | foo::<i16>(x_i8.into());
2018-01-06 23:10:51 -06:00
| ^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:215:16
2018-01-06 23:10:51 -06:00
|
215 | foo::<i16>(x_f64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i16, found f64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:217:16
2018-01-06 23:10:51 -06:00
|
217 | foo::<i16>(x_f32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i16, found f32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:220:15
2018-01-06 23:10:51 -06:00
|
220 | foo::<u8>(x_usize);
2018-01-06 23:10:51 -06:00
| ^^^^^^^ expected u8, found usize
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:222:15
2018-01-06 23:10:51 -06:00
|
222 | foo::<u8>(x_u64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u8, found u64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:224:15
2018-01-06 23:10:51 -06:00
|
224 | foo::<u8>(x_u32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u8, found u32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:226:15
2018-01-06 23:10:51 -06:00
|
226 | foo::<u8>(x_u16);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u8, found u16
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:229:15
2018-01-06 23:10:51 -06:00
|
229 | foo::<u8>(x_isize);
2018-01-06 23:10:51 -06:00
| ^^^^^^^ expected u8, found isize
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:231:15
2018-01-06 23:10:51 -06:00
|
231 | foo::<u8>(x_i64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u8, found i64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:233:15
2018-01-06 23:10:51 -06:00
|
233 | foo::<u8>(x_i32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u8, found i32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:235:15
2018-01-06 23:10:51 -06:00
|
235 | foo::<u8>(x_i16);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u8, found i16
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:237:15
2018-01-06 23:10:51 -06:00
|
237 | foo::<u8>(x_i8);
2018-01-06 23:10:51 -06:00
| ^^^^ expected u8, found i8
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:239:15
2018-01-06 23:10:51 -06:00
|
239 | foo::<u8>(x_f64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u8, found f64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:241:15
2018-01-06 23:10:51 -06:00
|
241 | foo::<u8>(x_f32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected u8, found f32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:244:15
2018-01-06 23:10:51 -06:00
|
244 | foo::<i8>(x_usize);
2018-01-06 23:10:51 -06:00
| ^^^^^^^ expected i8, found usize
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:246:15
2018-01-06 23:10:51 -06:00
|
246 | foo::<i8>(x_u64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i8, found u64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:248:15
2018-01-06 23:10:51 -06:00
|
248 | foo::<i8>(x_u32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i8, found u32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:250:15
2018-01-06 23:10:51 -06:00
|
250 | foo::<i8>(x_u16);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i8, found u16
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:252:15
2018-01-06 23:10:51 -06:00
|
252 | foo::<i8>(x_u8);
2018-01-06 23:10:51 -06:00
| ^^^^ expected i8, found u8
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:254:15
2018-01-06 23:10:51 -06:00
|
254 | foo::<i8>(x_isize);
2018-01-06 23:10:51 -06:00
| ^^^^^^^ expected i8, found isize
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:256:15
2018-01-06 23:10:51 -06:00
|
256 | foo::<i8>(x_i64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i8, found i64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:258:15
2018-01-06 23:10:51 -06:00
|
258 | foo::<i8>(x_i32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i8, found i32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:260:15
2018-01-06 23:10:51 -06:00
|
260 | foo::<i8>(x_i16);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i8, found i16
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:263:15
2018-01-06 23:10:51 -06:00
|
263 | foo::<i8>(x_f64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i8, found f64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:265:15
2018-01-06 23:10:51 -06:00
|
265 | foo::<i8>(x_f32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected i8, found f32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:268:16
2018-01-06 23:10:51 -06:00
|
268 | foo::<f64>(x_usize);
2018-01-06 23:10:51 -06:00
| ^^^^^^^ expected f64, found usize
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:270:16
2018-01-06 23:10:51 -06:00
|
270 | foo::<f64>(x_u64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected f64, found u64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:272:16
2018-01-06 23:10:51 -06:00
|
272 | foo::<f64>(x_u32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected f64, found u32
help: you can cast an `u32` to `f64`, producing the floating point representation of the integer
2018-01-06 23:10:51 -06:00
|
272 | foo::<f64>(x_u32.into());
2018-01-06 23:10:51 -06:00
| ^^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:274:16
2018-01-06 23:10:51 -06:00
|
274 | foo::<f64>(x_u16);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected f64, found u16
help: you can cast an `u16` to `f64`, producing the floating point representation of the integer
2018-01-06 23:10:51 -06:00
|
274 | foo::<f64>(x_u16.into());
2018-01-06 23:10:51 -06:00
| ^^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:276:16
2018-01-06 23:10:51 -06:00
|
276 | foo::<f64>(x_u8);
2018-01-06 23:10:51 -06:00
| ^^^^ expected f64, found u8
help: you can cast an `u8` to `f64`, producing the floating point representation of the integer
2018-01-06 23:10:51 -06:00
|
276 | foo::<f64>(x_u8.into());
2018-01-06 23:10:51 -06:00
| ^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:278:16
2018-01-06 23:10:51 -06:00
|
278 | foo::<f64>(x_isize);
2018-01-06 23:10:51 -06:00
| ^^^^^^^ expected f64, found isize
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:280:16
2018-01-06 23:10:51 -06:00
|
280 | foo::<f64>(x_i64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected f64, found i64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:282:16
2018-01-06 23:10:51 -06:00
|
282 | foo::<f64>(x_i32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected f64, found i32
help: you can cast an `i32` to `f64`, producing the floating point representation of the integer
2018-01-06 23:10:51 -06:00
|
282 | foo::<f64>(x_i32.into());
2018-01-06 23:10:51 -06:00
| ^^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:284:16
2018-01-06 23:10:51 -06:00
|
284 | foo::<f64>(x_i16);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected f64, found i16
help: you can cast an `i16` to `f64`, producing the floating point representation of the integer
2018-01-06 23:10:51 -06:00
|
284 | foo::<f64>(x_i16.into());
2018-01-06 23:10:51 -06:00
| ^^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:286:16
2018-01-06 23:10:51 -06:00
|
286 | foo::<f64>(x_i8);
2018-01-06 23:10:51 -06:00
| ^^^^ expected f64, found i8
help: you can cast an `i8` to `f64`, producing the floating point representation of the integer
2018-01-06 23:10:51 -06:00
|
286 | foo::<f64>(x_i8.into());
2018-01-06 23:10:51 -06:00
| ^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:289:16
2018-01-06 23:10:51 -06:00
|
289 | foo::<f64>(x_f32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected f64, found f32
help: you can cast an `f32` to `f64` in a lossless way
|
289 | foo::<f64>(x_f32.into());
2018-01-06 23:10:51 -06:00
| ^^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:292:16
2018-01-06 23:10:51 -06:00
|
292 | foo::<f32>(x_usize);
2018-01-06 23:10:51 -06:00
| ^^^^^^^ expected f32, found usize
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:294:16
2018-01-06 23:10:51 -06:00
|
294 | foo::<f32>(x_u64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected f32, found u64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:296:16
2018-01-06 23:10:51 -06:00
|
296 | foo::<f32>(x_u32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected f32, found u32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:298:16
2018-01-06 23:10:51 -06:00
|
298 | foo::<f32>(x_u16);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected f32, found u16
help: you can cast an `u16` to `f32`, producing the floating point representation of the integer
2018-01-06 23:10:51 -06:00
|
298 | foo::<f32>(x_u16.into());
2018-01-06 23:10:51 -06:00
| ^^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:300:16
2018-01-06 23:10:51 -06:00
|
300 | foo::<f32>(x_u8);
2018-01-06 23:10:51 -06:00
| ^^^^ expected f32, found u8
help: you can cast an `u8` to `f32`, producing the floating point representation of the integer
2018-01-06 23:10:51 -06:00
|
300 | foo::<f32>(x_u8.into());
2018-01-06 23:10:51 -06:00
| ^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:302:16
2018-01-06 23:10:51 -06:00
|
302 | foo::<f32>(x_isize);
2018-01-06 23:10:51 -06:00
| ^^^^^^^ expected f32, found isize
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:304:16
2018-01-06 23:10:51 -06:00
|
304 | foo::<f32>(x_i64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected f32, found i64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:306:16
2018-01-06 23:10:51 -06:00
|
306 | foo::<f32>(x_i32);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected f32, found i32
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:308:16
2018-01-06 23:10:51 -06:00
|
308 | foo::<f32>(x_i16);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected f32, found i16
help: you can cast an `i16` to `f32`, producing the floating point representation of the integer
2018-01-06 23:10:51 -06:00
|
308 | foo::<f32>(x_i16.into());
2018-01-06 23:10:51 -06:00
| ^^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:310:16
2018-01-06 23:10:51 -06:00
|
310 | foo::<f32>(x_i8);
2018-01-06 23:10:51 -06:00
| ^^^^ expected f32, found i8
help: you can cast an `i8` to `f32`, producing the floating point representation of the integer
2018-01-06 23:10:51 -06:00
|
310 | foo::<f32>(x_i8.into());
2018-01-06 23:10:51 -06:00
| ^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:312:16
2018-01-06 23:10:51 -06:00
|
312 | foo::<f32>(x_f64);
2018-01-06 23:10:51 -06:00
| ^^^^^ expected f32, found f64
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:316:16
|
316 | foo::<u32>(x_u8 as u16);
| ^^^^^^^^^^^ expected u32, found u16
help: you can cast an `u16` to `u32`, which will zero-extend the source value
|
316 | foo::<u32>((x_u8 as u16).into());
| ^^^^^^^^^^^^^^^^^^^^
error[E0308]: mismatched types
--> $DIR/numeric-cast.rs:318:16
|
318 | foo::<i32>(-x_i8);
| ^^^^^ expected i32, found i8
help: you can cast an `i8` to `i32`, which will sign-extend the source value
|
318 | foo::<i32>((-x_i8).into());
| ^^^^^^^^^^^^^^
error: aborting due to 134 previous errors
2018-01-06 23:10:51 -06:00
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0308"