rust/src/test/ui/issues/issue-17441.stderr

48 lines
1.6 KiB
Plaintext
Raw Normal View History

error[E0620]: cast to unsized type: `&[usize; 2]` as `[usize]`
2018-12-25 15:56:47 +00:00
--> $DIR/issue-17441.rs:2:16
|
2018-02-23 00:42:32 +00:00
LL | let _foo = &[1_usize, 2] as [usize];
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
help: consider using an implicit coercion to `&[usize]` instead
2018-12-25 15:56:47 +00:00
--> $DIR/issue-17441.rs:2:16
|
2018-02-23 00:42:32 +00:00
LL | let _foo = &[1_usize, 2] as [usize];
| ^^^^^^^^^^^^^^^^^^^^^^^^
error[E0620]: cast to unsized type: `std::boxed::Box<usize>` as `dyn std::fmt::Debug`
2018-12-25 15:56:47 +00:00
--> $DIR/issue-17441.rs:5:16
|
2018-02-23 00:42:32 +00:00
LL | let _bar = Box::new(1_usize) as std::fmt::Debug;
| ^^^^^^^^^^^^^^^^^^^^^---------------
| |
| help: try casting to a `Box` instead: `Box<std::fmt::Debug>`
error[E0620]: cast to unsized type: `usize` as `dyn std::fmt::Debug`
2018-12-25 15:56:47 +00:00
--> $DIR/issue-17441.rs:8:16
|
2018-02-23 00:42:32 +00:00
LL | let _baz = 1_usize as std::fmt::Debug;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
help: consider using a box or reference as appropriate
2018-12-25 15:56:47 +00:00
--> $DIR/issue-17441.rs:8:16
|
2018-02-23 00:42:32 +00:00
LL | let _baz = 1_usize as std::fmt::Debug;
| ^^^^^^^
error[E0620]: cast to unsized type: `[usize; 2]` as `[usize]`
2018-12-25 15:56:47 +00:00
--> $DIR/issue-17441.rs:11:17
|
2018-02-23 00:42:32 +00:00
LL | let _quux = [1_usize, 2] as [usize];
| ^^^^^^^^^^^^^^^^^^^^^^^
|
help: consider using a box or reference as appropriate
2018-12-25 15:56:47 +00:00
--> $DIR/issue-17441.rs:11:17
|
2018-02-23 00:42:32 +00:00
LL | let _quux = [1_usize, 2] as [usize];
| ^^^^^^^^^^^^
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`.