2017-12-10 13:47:55 -06:00
|
|
|
error[E0620]: cast to unsized type: `&[usize; 2]` as `[usize]`
|
|
|
|
--> $DIR/issue-17441.rs:12:16
|
|
|
|
|
|
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
|
|
|
|
--> $DIR/issue-17441.rs:12:16
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let _foo = &[1_usize, 2] as [usize];
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0620]: cast to unsized type: `std::boxed::Box<usize>` as `std::fmt::Debug`
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/issue-17441.rs:15:16
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let _bar = Box::new(1_usize) as std::fmt::Debug;
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^---------------
|
|
|
|
| |
|
|
|
|
| help: try casting to a `Box` instead: `Box<std::fmt::Debug>`
|
|
|
|
|
|
|
|
error[E0620]: cast to unsized type: `usize` as `std::fmt::Debug`
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/issue-17441.rs:18:16
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let _baz = 1_usize as std::fmt::Debug;
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: consider using a box or reference as appropriate
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/issue-17441.rs:18:16
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let _baz = 1_usize as std::fmt::Debug;
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
error[E0620]: cast to unsized type: `[usize; 2]` as `[usize]`
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/issue-17441.rs:21: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
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/issue-17441.rs:21: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-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0620"
|