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 ? behind collect without turbofish gives confusing error message, not hinting at wrong type. #85695

Open
hwalinga opened this issue May 25, 2021 · 1 comment
Labels
A-diagnostics Area: Messages for errors, warnings, and lints A-inference Area: Type inference C-enhancement Category: An issue proposing an enhancement or a PR with one. D-newcomer-roadblock Diagnostics: Confusing error or lint; hard to understand for new users. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.

Comments

@hwalinga
Copy link

hwalinga commented May 25, 2021

Following up from #49391 @estebank

Not sure if the compiler can be clever about this.

Given the following code: https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=e30b2fc110718876664dd046492b4dc5

use std::fs::File;
use std::io::{self, prelude::*, BufReader};

fn char_count(text: &str, pattern: &str) -> usize {
    text.len() + pattern.len()

}

fn main() -> io::Result<()> {
    let rdr = BufReader::new(File::open("file")?);

    // Compiler says: "doesn't have a size known at compile-time"
    // Change to "collect::<Result<_, _>>()?" for fix.
    let lines: Vec<_> = rdr.lines().collect()?; 

    let text = &lines[0];
    let pattern = &lines[0];
    
    // Removing below line, correctly triggers "cannot infer type"
    let _x = char_count(text, pattern);
    Ok(())
}

The current output is:

   Compiling playground v0.0.1 (/playground)
error[E0277]: the size for values of type `str` cannot be known at compilation time
  --> src/main.rs:17:20
   |
17 |     let pattern = &lines[0];
   |                    ^^^^^^^^ doesn't have a size known at compile-time
   |
   = help: the trait `Sized` is not implemented for `str`
   = note: required because of the requirements on the impl of `Index<usize>` for `Vec<str>`

error[E0277]: the size for values of type `str` cannot be known at compilation time
   --> src/main.rs:14:16
    |
14  |     let lines: Vec<_> = rdr.lines().collect()?; 
    |                ^^^^^^ doesn't have a size known at compile-time
    |
    = help: the trait `Sized` is not implemented for `str`

error[E0277]: the size for values of type `str` cannot be known at compilation time
   --> src/main.rs:14:25
    |
14  |     let lines: Vec<_> = rdr.lines().collect()?; 
    |                         ^^^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
    |
    = help: the trait `Sized` is not implemented for `str`

error[E0277]: the size for values of type `str` cannot be known at compilation time
  --> src/main.rs:16:17
   |
16 |     let text = &lines[0];
   |                 ^^^^^^^^ doesn't have a size known at compile-time
   |
   = help: the trait `Sized` is not implemented for `str`
   = note: required because of the requirements on the impl of `Index<usize>` for `Vec<str>`

error: aborting due to 4 previous errors

For more information about this error, try `rustc --explain E0277`.
error: could not compile `playground`

To learn more, run the command again with --verbose.

Ideally the output be:

   Compiling playground v0.0.1 (/playground)
error[E0282]: type annotations needed for `Vec<_>`
  --> src/main.rs:14:16
   |
14 |     let lines: Vec<_> = rdr.lines().collect()?; 
   |         -----  ^^^^^^ cannot infer type
   |         |
   |         consider giving `lines` the explicit type `Vec<_>`, with the type parameters specified

error: aborting due to previous error

For more information about this error, try `rustc --explain E0282`.
error: could not compile `playground`

To learn more, run the command again with --verbose.

This also will happen correctly when the function call taking the strings is not used. Apparently that function call put the compiler to the wrong direction what should be the correct fix to the code.

@hwalinga hwalinga added A-diagnostics Area: Messages for errors, warnings, and lints T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels May 25, 2021
@estebank estebank added A-inference Area: Type inference D-newcomer-roadblock Diagnostics: Confusing error or lint; hard to understand for new users. labels May 25, 2021
@JohnTitor JohnTitor added the C-enhancement Category: An issue proposing an enhancement or a PR with one. label Jun 15, 2021
@RodBurman
Copy link

The compiler output is now:

cargo build
   Compiling qubtf v0.1.0 (/Users/rod/code/rust/triage/qubtf)
error[E0277]: the size for values of type `str` cannot be known at compilation time
  --> src/main.rs:17:20
   |
17 |     let pattern = &lines[0];
   |                    ^^^^^^^^ doesn't have a size known at compile-time
   |
   = help: the trait `Sized` is not implemented for `str`
   = note: required for `Vec<str>` to implement `Index<usize>`

error[E0277]: the size for values of type `str` cannot be known at compilation time
   --> src/main.rs:14:16
    |
14  |     let lines: Vec<_> = rdr.lines().collect()?; 
    |                ^^^^^^ doesn't have a size known at compile-time
    |
    = help: the trait `Sized` is not implemented for `str`
note: required by an implicit `Sized` bound in `Vec`
   --> /Users/rod/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/src/rust/library/alloc/src/vec/mod.rs:397:16
    |
397 | pub struct Vec<T, #[unstable(feature = "allocator_api", issue = "32838")] A: Allocator = Global> {
    |                ^ required by the implicit `Sized` requirement on this type parameter in `Vec`

error[E0277]: the size for values of type `str` cannot be known at compilation time
  --> src/main.rs:16:17
   |
16 |     let text = &lines[0];
   |                 ^^^^^^^^ doesn't have a size known at compile-time
   |
   = help: the trait `Sized` is not implemented for `str`
   = note: required for `Vec<str>` to implement `Index<usize>`

error[E0277]: the size for values of type `str` cannot be known at compilation time
   --> src/main.rs:14:25
    |
14  |     let lines: Vec<_> = rdr.lines().collect()?; 
    |                         ^^^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
    |
    = help: the trait `Sized` is not implemented for `str`
note: required by an implicit `Sized` bound in `Vec`
   --> /Users/rod/.rustup/toolchains/stable-aarch64-apple-darwin/lib/rustlib/src/rust/library/alloc/src/vec/mod.rs:397:16
    |
397 | pub struct Vec<T, #[unstable(feature = "allocator_api", issue = "32838")] A: Allocator = Global> {
    |                ^ required by the implicit `Sized` requirement on this type parameter in `Vec`

For more information about this error, try `rustc --explain E0277`.
error: could not compile `qubtf` (bin "qubtf") due to 4 previous errors

This with

cargo -v -V
cargo 1.84.1 (66221abde 2024-11-19)
release: 1.84.1
commit-hash: 66221abdeca2002d318fde6efff516aab091df0e
commit-date: 2024-11-19
host: aarch64-apple-darwin
libgit2: 1.8.1 (sys:0.19.0 vendored)
libcurl: 8.7.1 (sys:0.4.74+curl-8.9.0 system ssl:(SecureTransport) LibreSSL/3.3.6)
ssl: OpenSSL 1.1.1w  11 Sep 2023
os: Mac OS 15.3.0 [64-bit]

This has not really moved towards the desired output and gives no suggestion of how to fix the problem.

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 A-inference Area: Type inference C-enhancement Category: An issue proposing an enhancement or a PR with one. D-newcomer-roadblock Diagnostics: Confusing error or lint; hard to understand for new users. 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

4 participants