We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Trying to use position() method on vecs, I get errors like
position()
/Users/nmatsakis/versioned/rust-green/src/rustc/middle/typeck/check/method.rs:364:18: 364:44 error: multiple applicable methods in scope /Users/nmatsakis/versioned/rust-green/src/rustc/middle/typeck/check/method.rs:364 match impl_info.methods.position(|m| m.ident == self.m_name) { ^~~~~~~~~~~~~~~~~~~~~~~~~~ /Users/nmatsakis/versioned/rust-green/src/rustc/middle/typeck/check/method.rs:364:18: 364:44 note: candidate #1 is `core::vec::__extensions__::position` /Users/nmatsakis/versioned/rust-green/src/rustc/middle/typeck/check/method.rs:364 match impl_info.methods.position(|m| m.ident == self.m_name) { ^~~~~~~~~~~~~~~~~~~~~~~~~~ /Users/nmatsakis/versioned/rust-green/src/rustc/middle/typeck/check/method.rs:364:18: 364:44 note: candidate #2 is `core::vec::__extensions__::position` /Users/nmatsakis/versioned/rust-green/src/rustc/middle/typeck/check/method.rs:364 match impl_info.methods.position(|m| m.ident == self.m_name) { ^~~~~~~~~~~~~~~~~~~~~~~~~~
that seem erroneous. Left some FIXMEs for uglier code that resulted from having to call vec::position() explicitly.
vec::position()
The text was updated successfully, but these errors were encountered:
I think this is fixed. Testing.
Sorry, something went wrong.
Can close this when #5065 lands.
Fixed in 41a4151
Merge pull request rust-lang#3453 from scampi/issue-3423
ad6d898
remove trailing whitespaces in missing spans
Auto merge of rust-lang#3453 - RalfJung:rustup, r=RalfJung
bfaf6b0
Rustup
No branches or pull requests
Trying to use
position()
method on vecs, I get errors likethat seem erroneous. Left some FIXMEs for uglier code that resulted from having to call
vec::position()
explicitly.The text was updated successfully, but these errors were encountered: