Uh oh!
There was an error while loading. Please reload this page.
Avoid ICE on return outside of fn with literal array - #64649
Conversation
rust-highfive
commented
Sep 21, 2019
r? @zackmdavis (rust_highfive has picked a reviewer for you, use r? to override) |
estebank
commented
Sep 21, 2019
The beta nomination is low priority, as the ICE has been present in stable for several releases, but it'd be nice if we can get such a small patch out the door sooner rather than later. |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Mark-Simulacrum
commented
Sep 21, 2019
Un-nominating for beta. We do not have the time to deal with possible failures of this patch -- if this hasn't yet landed on master (or even been approved for that), it's not going to land in time for beta backport. @rustbot modify labels: -beta-nominated |
bors
commented
Sep 26, 2019
☔ The latest upstream changes (presumably #64513) made this pull request unmergeable. Please resolve the merge conflicts. |
Centril
commented
Sep 29, 2019
r? @varkor |
Do not ICE when encountering `enum E { A = return [0][0] }`.varkor
commented
Oct 1, 2019
@bors r+ rollup |
bors
commented
Oct 1, 2019
📌 Commit 0e6fb8e has been approved by |
Avoid ICE on return outside of fn with literal array
Do not ICE when encountering `enum E { A = return [0][0] }`.
Fixrust-lang#64638.Rollup of 11 pull requests Successful merges: - #64649 (Avoid ICE on return outside of fn with literal array) - #64722 (Make all alt builders produce parallel-enabled compilers) - #64801 (Avoid `chain()` in `find_constraint_paths_between_regions()`.) - #64805 (Still more `ObligationForest` improvements.) - #64840 (SelfProfiler API refactoring and part one of event review) - #64885 (use try_fold instead of try_for_each to reduce compile time) - #64942 (Fix clippy warnings) - #64952 (Update cargo.) - #64974 (Fix zebra-striping in generic dataflow visualization) - #64978 (Fully clear `HandlerInner` in `Handler::reset_err_count`) - #64979 (Update books) Failed merges: - #64959 (syntax: improve parameter without type suggestions) r? @ghost
Do not ICE when encountering
enum E { A = return [0][0] }.Fix#64638.