We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In Rust 1.15.1 and nightly (24a70eb 2017-02-09)
fn foo<A, B>() {} fn main() { foo::<u8>() }
Produces the error:
error[E0089]: too few type parameters provided: expected 2 parameters parameters, found 1 parameter parameter --> src/main.rs:4:5 | 4 | foo::<u8>() | ^^^^^^^^^ expected 2 type parameters
Specifically, my issue is with:
expected 2 parameters parameters, found 1 parameter parameter
The text was updated successfully, but these errors were encountered:
It certainly looks like it would be coming from this bit of code, but on first read it all looks reasonable.
Sorry, something went wrong.
Oh, no E0089 is this bit. Makes more sense. Whipping up a patch.
E0089
Remove duplicated "parameter" in E0089 text
79d32e9
Closes rust-lang#39732
Rollup merge of rust-lang#39758 - shepmaster:e0089-duplicate-text, r=…
4148711
…GuillaumeGomez Remove duplicated "parameter" in E0089 text Closes rust-lang#39732
No branches or pull requests
In Rust 1.15.1 and nightly (24a70eb 2017-02-09)
Produces the error:
Specifically, my issue is with:
The text was updated successfully, but these errors were encountered: