Uh oh!
There was an error while loading. Please reload this page.
Detect mistyped associated consts in Instance::resolve. - #70970
Conversation
rust-highfive
commented
Apr 10, 2020
(rust_highfive has picked a reviewer for you, use r? to override) |
e522c8a to
65ce098Compareeddyb
commented
Apr 10, 2020
@bors try @rust-timer queue |
rust-timer
commented
Apr 10, 2020
Awaiting bors try build completion |
bors
commented
Apr 10, 2020
⌛ Trying commit 65ce0985c9462170b4ee97b1f9af493ac6d2976b with merge 2ffb9a054b7827a50003601cf5c67a1f483cc0c1... |
bors
commented
Apr 10, 2020
☀️ Try build successful - checks-azure |
rust-timer
commented
Apr 10, 2020
Queued 2ffb9a054b7827a50003601cf5c67a1f483cc0c1 with parent 0c835b0, future comparison URL. |
rust-timer
commented
Apr 10, 2020
Finished benchmarking try commit 2ffb9a054b7827a50003601cf5c67a1f483cc0c1, comparison URL. |
eddyb
commented
Apr 10, 2020
Huh, I guess this is fast enough. r? @oli-obk cc @nikomatsakis |
Thanks! I take it we still need to keep the The testcase for that is |
Uh oh!
There was an error while loading. Please reload this page.
65ce098 to
1dd0d8aCompareInstance::resolve.1dd0d8a to
a8819dcCompareeddyb
commented
Apr 12, 2020
Blocked on #71049. |
a8819dc to
e5bcc6bComparee5bcc6b to
2a52cd5Comparebors
commented
Apr 15, 2020
☔ The latest upstream changes (presumably #70452) made this pull request unmergeable. Please resolve the merge conflicts. |
nikomatsakis
left a comment
There was a problem hiding this comment.
(All looks good to me, from a quick read)
2a52cd5 to
eb4b503Compareeb4b503 to
289f46aCompareoli-obk
commented
Apr 22, 2020
@bors r+ |
bors
commented
Apr 22, 2020
📌 Commit 289f46a has been approved by |
Rollup of 6 pull requests Successful merges: - rust-lang#70970 (Detect mistyped associated consts in `Instance::resolve`.) - rust-lang#71203 (Correct await span for async-await error reporting) - rust-lang#71214 (Add error code for inner doc error) - rust-lang#71337 (Moving all rustdoc-ui tests to check-pass) - rust-lang#71412 (Clarify unused_doc_comments note on macro invocations) - rust-lang#71414 (More diagnostic items for Clippy usage) Failed merges: r? @ghost
Based on #71049 to prevent redundant/misleading downstream errors.
Fixes#70942 by refusing to resolve an associated
constif it doesn't have the same type in theimplthat it does in thetrait(which we assume had errored, anddelay_span_bugguards against bugs).