2017-12-10 13:47:55 -06:00
|
|
|
error[E0620]: cast to unsized type: `&[usize; 2]` as `[usize]`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-17441.rs:2:16
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let _foo = &[1_usize, 2] as [usize];
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: consider using an implicit coercion to `&[usize]` instead
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-17441.rs:2:16
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let _foo = &[1_usize, 2] as [usize];
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
error[E0620]: cast to unsized type: `Box<usize>` as `dyn Debug`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-17441.rs:5:16
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2019-05-28 13:46:13 -05:00
|
|
|
LL | let _bar = Box::new(1_usize) as dyn std::fmt::Debug;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^-------------------
|
2017-12-10 13:47:55 -06:00
|
|
|
| |
|
2020-06-14 23:36:25 -05:00
|
|
|
| help: you can cast to a `Box` instead: `Box<dyn std::fmt::Debug>`
|
2017-12-10 13:47:55 -06:00
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
error[E0620]: cast to unsized type: `usize` as `dyn Debug`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-17441.rs:8:16
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2019-05-28 13:46:13 -05:00
|
|
|
LL | let _baz = 1_usize as dyn std::fmt::Debug;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
|
help: consider using a box or reference as appropriate
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-17441.rs:8:16
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2019-05-28 13:46:13 -05:00
|
|
|
LL | let _baz = 1_usize as dyn std::fmt::Debug;
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error[E0620]: cast to unsized type: `[usize; 2]` as `[usize]`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-17441.rs:11:17
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let _quux = [1_usize, 2] as [usize];
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: consider using a box or reference as appropriate
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-17441.rs:11:17
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let _quux = [1_usize, 2] as [usize];
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0620`.
|