2019-04-21 15:57:00 -07:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/len.rs:3:10
|
|
|
|
|
|
|
|
|
LL | test(array.len());
|
2019-11-15 09:37:01 -08:00
|
|
|
| ^^^^^^^^^^^ expected `u32`, found `usize`
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2020-09-29 19:27:58 -07:00
|
|
|
help: you can convert a `usize` to a `u32` and panic if the converted value doesn't fit
|
2019-04-21 15:57:00 -07:00
|
|
|
|
|
|
|
|
LL | test(array.len().try_into().unwrap());
|
2021-08-10 10:53:43 +00:00
|
|
|
| ++++++++++++++++++++
|
2019-04-21 15:57:00 -07:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|