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

Using an unsized value from slicing incorrectly should give a more helpful error message #20848

Closed
huonw opened this issue Jan 10, 2015 · 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. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. WG-diagnostics Working group: Diagnostics

Comments

@huonw
Copy link
Member

huonw commented Jan 10, 2015

fn main() {
    let y = "foo";
    let x = y[1..2];
}
<anon>:3:9: 3:10 error: the trait `core::marker::Sized` is not implemented for the type `str`
<anon>:3     let x = y[1..2];
                 ^

The fix is to write let x = &y[1..2]; but it's not the first thing that springs to mind given that error message, especially for a beginner.

cc #20783

@huonw huonw added the A-diagnostics Area: Messages for errors, warnings, and lints label Jan 10, 2015
@steveklabnik
Copy link
Member

Triage: the error is slightly better:

hello.rs:3:9: 3:10 error: the trait `core::marker::Sized` is not implemented for the type `str` [E0277]
hello.rs:3     let x = y[1..2];
                   ^
hello.rs:3:9: 3:10 help: run `rustc --explain E0277` to see a detailed explanation
hello.rs:3:9: 3:10 note: `str` does not have a constant size known at compile-time
hello.rs:3:9: 3:10 note: all local variables must have a statically known size
error: aborting due to previous error

But still does not lead you to the fix.

@steveklabnik steveklabnik added the T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. label Mar 9, 2017
@Mark-Simulacrum Mark-Simulacrum added the C-enhancement Category: An issue proposing an enhancement or a PR with one. label Jul 22, 2017
@estebank
Copy link
Contributor

Current output:

error[E0277]: the trait bound `str: std::marker::Sized` is not satisfied
 --> src/main.rs:3:9
  |
3 |     let x = y[1..2];
  |         ^   ------- help: consider borrowing here: `&y[1..2]`
  |         |
  |         `str` does not have a constant size known at compile-time
  |
  = help: the trait `std::marker::Sized` is not implemented for `str`
  = note: all local variables must have a statically known size

@estebank estebank added the WG-diagnostics Working group: Diagnostics label Dec 12, 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. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. WG-diagnostics Working group: Diagnostics
Projects
None yet
Development

No branches or pull requests

4 participants