Uh oh!
There was an error while loading. Please reload this page.
Unify output of "variant not found" errors - #68014
Merged
Merged
Conversation
rust-highfive
commented
Jan 8, 2020
Contributor
r? @cramertj (rust_highfive has picked a reviewer for you, use r? to override) |
estebank
commented
Jan 8, 2020
| @@ -1,4 +1,4 @@ | |||
| error[E0599]: no method named `b` found for type `&Self` in the current scope | |||
| error[E0599]: no method named `b` found for reference `&Self` in the current scope | |||
ContributorAuthor
There was a problem hiding this comment.
The only thing I have reservations about is this reference here, but that should probably be changed in prefix_string to skip references or change it to be something like borrowed enum.
cramertj
commented
Jan 8, 2020
Member
@bors r+ |
bors
commented
Jan 8, 2020
Collaborator
📌 Commit 2c5766f has been approved by |
Centril added a commit
to Centril/rust
that referenced
this pull request
Jan 9, 2020
Unify output of "variant not found" errors Fixrust-lang#49566.
JohnTitor added a commit
to JohnTitor/rust
that referenced
this pull request
Jan 10, 2020
Unify output of "variant not found" errors Fixrust-lang#49566.
bors added a commit
that referenced
this pull request
Jan 10, 2020
Rollup of 8 pull requests Successful merges: - #66045 (Add method Result::into_ok) - #67258 (Introduce `X..`, `..X`, and `..=X` range patterns) - #68014 (Unify output of "variant not found" errors) - #68019 (Build compiletest with in-tree libtest) - #68039 (remove explicit strip-hidden pass from compiler doc generation) - #68050 (Canonicalize rustc_error imports) - #68059 (Allow specifying LLVM args in target specifications) - #68075 (rustbuild: Cleanup book generation) Failed merges: - #68089 (Unstabilize `Vec::remove_item`) r? @ghost
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 freeto 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#49566.