2018-07-15 14:11:54 -07:00
|
|
|
error[E0308]: mismatched types
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue-31910.rs:2:9
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
|
LL | X = Trait::Number,
|
|
|
|
| ^^^^^^^^^^^^^ expected isize, found i32
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2019-05-03 10:41:26 -07:00
|
|
|
help: you can convert an `i32` to `isize` and panic if the converted value wouldn't fit
|
2019-04-21 15:44:23 -07:00
|
|
|
|
|
|
|
|
LL | X = Trait::Number.try_into().unwrap(),
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-07-15 14:11:54 -07:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|