blob: 7c5e79dab992d81710de51668b4db8633d57d58e [file] [log] [blame]
error[E0161]: cannot move a value of type str: the size of str cannot be statically determined
--> $DIR/dst-index.rs:41:5
|
LL | S[0];
| ^^^^
error[E0161]: cannot move a value of type (dyn std::fmt::Debug + 'static): the size of (dyn std::fmt::Debug + 'static) cannot be statically determined
--> $DIR/dst-index.rs:44:5
|
LL | T[0];
| ^^^^
error[E0507]: cannot move out of indexed content
--> $DIR/dst-index.rs:41:5
|
LL | S[0];
| ^^^^ cannot move out of indexed content
error[E0507]: cannot move out of indexed content
--> $DIR/dst-index.rs:44:5
|
LL | T[0];
| ^^^^ cannot move out of indexed content
error: aborting due to 4 previous errors
Some errors occurred: E0161, E0507.
For more information about an error, try `rustc --explain E0161`.