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