core::vec is missing methods for mutable slices#6780
Closed
june0cho wants to merge 1 commit into
Closed
Conversation
Contributor
|
@june0cho Thanks! Can you file an issue about the method inference problem? |
Contributor
|
I don't believe the failure to find a method is a bug, but rather the impl definitions in the PR are not quite right. In particular, the mut_slice method is defined as: but the receiver type is |
bors
added a commit
that referenced
this pull request
May 29, 2013
Fix #5984. Also, I found a problem on type inference and left a comment.
Contributor
Author
|
@nikomatsakis you are right. I corrected as you commented and the error does not occur anymore. |
Closed
flip1995
pushed a commit
to flip1995/rust
that referenced
this pull request
Feb 25, 2021
lintcheck: fully rerun lintcheck if clippy was rebuilt since last log update Automatically clean lintchecks shared target dir (will force clippy to recheck sources) if the clippy binaries are older than the lintcheck logs. Also updated lintcheck logs in the pr. changelog: lintcheck: fully rerun lintcheck if clippy was rebuilt since last log update
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix #5984. Also, I found a problem on type inference and left a comment.