2018-08-08 12:28:26 +00:00
|
|
|
error[E0161]: cannot move a value of type str: the size of str cannot be statically determined
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/dst-index.rs:31:5
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | S[0];
|
|
|
|
| ^^^^
|
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
error[E0161]: cannot move a value of type dyn std::fmt::Debug: the size of dyn std::fmt::Debug cannot be statically determined
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/dst-index.rs:34:5
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | T[0];
|
|
|
|
| ^^^^
|
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
error[E0507]: cannot move out of borrowed content
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/dst-index.rs:31:5
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | S[0];
|
2019-04-22 07:40:08 +00:00
|
|
|
| ^^^^ cannot move out of borrowed content
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
error[E0507]: cannot move out of borrowed content
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/dst-index.rs:34:5
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | T[0];
|
2019-04-22 07:40:08 +00:00
|
|
|
| ^^^^ cannot move out of borrowed content
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
2019-04-17 17:26:38 +00:00
|
|
|
Some errors have detailed explanations: E0161, E0507.
|
2018-08-08 12:28:26 +00:00
|
|
|
For more information about an error, try `rustc --explain E0161`.
|