Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Confusing error message wording for moving out of non-copy slices. #36407

Closed
solson opened this issue Sep 11, 2016 · 2 comments
Closed

Confusing error message wording for moving out of non-copy slices. #36407

solson opened this issue Sep 11, 2016 · 2 comments
Labels
A-diagnostics Area: Messages for errors, warnings, and lints C-enhancement Category: An issue proposing an enhancement or a PR with one. E-easy Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.

Comments

@solson
Copy link
Member

solson commented Sep 11, 2016

https://is.gd/iH1SwT

let x = vec![String::from("foo")].into_boxed_slice();
let y = x[0];

// error: cannot move out of type `[std::string::String]`, a non-copy fixed-size array [--explain E0508]

It refers to the slice as a fixed-sized array. This can also be reproduced with a Vec<String> by indexing (*x)[0] instead of indexing x[0].

@apasel422 apasel422 added the A-diagnostics Area: Messages for errors, warnings, and lints label Sep 13, 2016
@steveklabnik steveklabnik added T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. and removed T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Mar 9, 2017
@Mark-Simulacrum
Copy link
Member

The error message today is better, but not ideal. array should probably be slice.

error[E0508]: cannot move out of type `[std::string::String]`, a non-copy array
 --> test.rs:3:9
  |
3 | let y = x[0];
  |         ^^^^
  |         |
  |         help: consider using a reference instead `&x[0]`
  |         cannot move out of here

error: aborting due to previous error(s)

@Mark-Simulacrum Mark-Simulacrum added C-enhancement Category: An issue proposing an enhancement or a PR with one. E-easy Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue. labels Jul 26, 2017
@gaurikholkar-zz
Copy link

gaurikholkar-zz commented Aug 7, 2017

@akazuko you can look at this to start of with! Is someone already working on this? I can write some instructions.

tamird added a commit to tamird/rust that referenced this issue Aug 20, 2017
GuillaumeGomez added a commit to GuillaumeGomez/rust that referenced this issue Aug 22, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-diagnostics Area: Messages for errors, warnings, and lints C-enhancement Category: An issue proposing an enhancement or a PR with one. E-easy Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

No branches or pull requests

5 participants