Uh oh!
There was an error while loading. Please reload this page.
Feature gate where clauses on associated type impls - #53235
Conversation
rust-highfive
commented
Aug 9, 2018
r? @eddyb (rust_highfive has picked a reviewer for you, use r? to override) |
estebank
commented
Aug 9, 2018
@bors r+ |
bors
commented
Aug 9, 2018
📌 Commit 1aa6c23 has been approved by |
Feature gate where clauses on associated type impls Fixesrust-lang#52913. This doesn't address the core problem, which is tracked by rust-lang#47206. However, it fixes the stable-to-stable regression: you now have to enable `#![feature(generic_associated_types)]` to trigger the weird behaviour.
RalfJung
commented
Aug 22, 2018
@bors r=estebank Seems something is stuck? |
bors
commented
Aug 22, 2018
📌 Commit 83d5a60 has been approved by |
Feature gate where clauses on associated type impls Fixesrust-lang#52913. This doesn't address the core problem, which is tracked by rust-lang#47206. However, it fixes the stable-to-stable regression: you now have to enable `#![feature(generic_associated_types)]` to trigger the weird behaviour.
bors
commented
Aug 23, 2018
⌛ Testing commit 83d5a60 with merge a4bf6d10c12116a1e4111c51560d5134de96d00b... |
bors
commented
Aug 23, 2018
💔 Test failed - status-travis |
rust-highfive
commented
Aug 23, 2018
Your PR failed on Travis (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 |
kennytm
commented
Aug 23, 2018
@bors retry |
bors
commented
Aug 23, 2018
bors
commented
Aug 23, 2018
☀️ Test successful - status-appveyor, status-travis |
nikomatsakis
commented
Aug 25, 2018
Accepting for beta (cc @rust-lang/compiler) -- small patch, fixes stability hole. |
[beta] Rollup backports Merged and approved: * #53559: add macro check for lint * #53509: resolve: Reject some inaccessible candidates sooner during import resolution * #53239: rustc_codegen_llvm: Restore the closure env alloca hack for LLVM 5. * #53235: Feature gate where clauses on associated type impls * #53516: resolve: Continue search in outer scopes after applying derive resolution fallback r? @ghost
Fixes#52913. This doesn't address the core problem, which is tracked by #47206. However, it fixes the stable-to-stable regression: you now have to enable
#![feature(generic_associated_types)]to trigger the weird behaviour.