Don't ICE for completely unexpandable impl Trait types#65777
Merged
bors merged 2 commits intorust-lang:masterfrom Oct 27, 2019
Merged
Don't ICE for completely unexpandable impl Trait types#65777bors merged 2 commits intorust-lang:masterfrom
impl Trait types#65777bors merged 2 commits intorust-lang:masterfrom
Conversation
Contributor
|
r? @davidtwco (rust_highfive has picked a reviewer for you, use r? to override) |
Centril
reviewed
Oct 24, 2019
Centril
reviewed
Oct 24, 2019
Co-Authored-By: Mazdak Farrokhzad <twingoow@gmail.com>
Contributor
Author
|
@bors r=davidtwco |
Collaborator
|
📌 Commit 0c05ed2 has been approved by |
Collaborator
|
⌛ Testing commit 0c05ed2 with merge 3fcb193fa0911ad67787daa5e99b41e098f8c14a... |
Contributor
|
Your PR failed (pretty log, raw log). Through arcane magic we have determined that the following fragments from the build log may contain information about the problem. Click to expand the log.I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
Collaborator
|
💔 Test failed - checks-azure |
Contributor
Author
|
@bors retry |
Centril
added a commit
to Centril/rust
that referenced
this pull request
Oct 26, 2019
…nsion, r=davidtwco Don't ICE for completely unexpandable `impl Trait` types Save the resolution of these types (to themselves) to the typeck tables so that they will eventually reach E0720. closes rust-lang#65561
Centril
added a commit
to Centril/rust
that referenced
this pull request
Oct 26, 2019
…nsion, r=davidtwco Don't ICE for completely unexpandable `impl Trait` types Save the resolution of these types (to themselves) to the typeck tables so that they will eventually reach E0720. closes rust-lang#65561
Centril
added a commit
to Centril/rust
that referenced
this pull request
Oct 27, 2019
…nsion, r=davidtwco Don't ICE for completely unexpandable `impl Trait` types Save the resolution of these types (to themselves) to the typeck tables so that they will eventually reach E0720. closes rust-lang#65561
bors
added a commit
that referenced
this pull request
Oct 27, 2019
Rollup of 6 pull requests Successful merges: - #65566 (Use heuristics to suggest assignment) - #65738 (Coherence should allow fundamental types to impl traits when they are local) - #65777 (Don't ICE for completely unexpandable `impl Trait` types) - #65834 (Remove lint callback from driver) - #65839 (Clean up `check_consts` now that new promotion pass is implemented) - #65855 (Add long error explaination for E0666) Failed merges: 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 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.
Save the resolution of these types (to themselves) to the typeck tables so that they will eventually reach E0720.
closes #65561