-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rollup of 6 pull requests #119889
Rollup of 6 pull requests #119889
Commits on Jan 11, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 68c2f11 - Browse repository at this point
Copy the full SHA 68c2f11View commit details -
Avoid repetition in
flush_delayed
calls.There are two places that handle normal delayed bugs. This commit factors out some repeated code. Also, we can use `std::mem::take` instead of `std::mem::replace`.
Configuration menu - View commit details
-
Copy full SHA for 3330940 - Browse repository at this point
Copy the full SHA 3330940View commit details
Commits on Jan 12, 2024
-
Add more information to
visit_projection_elem
Without the starting place, it's hard to retrieve any useful information from visiting a projection.
Configuration menu - View commit details
-
Copy full SHA for efab0dc - Browse repository at this point
Copy the full SHA efab0dcView commit details -
Configuration menu - View commit details
-
Copy full SHA for eb79bc0 - Browse repository at this point
Copy the full SHA eb79bc0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7df43d3 - Browse repository at this point
Copy the full SHA 7df43d3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 462bcac - Browse repository at this point
Copy the full SHA 462bcacView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6d29eac - Browse repository at this point
Copy the full SHA 6d29eacView commit details -
Configuration menu - View commit details
-
Copy full SHA for aa874c5 - Browse repository at this point
Copy the full SHA aa874c5View commit details -
Configuration menu - View commit details
-
Copy full SHA for ca421fe - Browse repository at this point
Copy the full SHA ca421feView commit details -
Rollup merge of rust-lang#119817 - compiler-errors:normalize-opaques,…
… r=lcnr Remove special-casing around `AliasKind::Opaque` when structurally resolving in new solver This fixes a few inconsistencies around where we don't eagerly resolve opaques to their (locally-defined) hidden types in the new solver. It essentially allows this code to work: ```rust fn main() { type Tait = impl Sized; struct S { i: i32, } let x: Tait = S { i: 0 }; println!("{}", x.i); } ``` Since `Tait` is defined in `main`, we are able to poke through the type of `x` with deref. r? lcnr
Configuration menu - View commit details
-
Copy full SHA for 46c3c01 - Browse repository at this point
Copy the full SHA 46c3c01View commit details -
Rollup merge of rust-lang#119819 - chenyukang:yukang-fix-118183-lint,…
… r=davidtwco Check rust lints when an unknown lint is detected Fixes rust-lang#118183
Configuration menu - View commit details
-
Copy full SHA for 737452a - Browse repository at this point
Copy the full SHA 737452aView commit details -
Rollup merge of rust-lang#119872 - compiler-errors:eagerly-emit-delay…
…ed-bugs, r=oli-obk,nnethercote Give me a way to emit all the delayed bugs as errors (add `-Zeagerly-emit-delayed-bugs`) This is probably a *better* way to inspect all the delayed bugs in a program that what exists currently (and therefore makes it very easy to choose the right number `N` with `-Zemit-err-as-bug=N`, though I guess the naming is a bit ironic when you pair both of the flags together, but that feels like naming bikeshed more than anything). This pacifies my only concern with rust-lang#119871 (comment), because (afaict?) that PR doesn't allow you to intercept a delayed bug's stack trace anymore, which as someone who debugs the compiler a lot, is something that I can *promise* that I do. r? `@nnethercote` or `@oli-obk`
Configuration menu - View commit details
-
Copy full SHA for 504794b - Browse repository at this point
Copy the full SHA 504794bView commit details -
Rollup merge of rust-lang#119877 - celinval:smir-visit-projection, r=…
…oli-obk Add more information to `visit_projection_elem` Without the starting place, it's hard to retrieve any useful information from visiting a projection. Note: I still need to add a test.
Configuration menu - View commit details
-
Copy full SHA for 4d12817 - Browse repository at this point
Copy the full SHA 4d12817View commit details -
Rollup merge of rust-lang#119884 - GuillaumeGomez:rename-env-opt, r=d…
…avidtwco Rename `--env` option flag to `--env-set` As discussed [on zulip](https://rust-lang.zulipchat.com/#narrow/stream/131828-t-compiler/topic/Stabilizing.20.60--env.60.20option.20flag.3F). We rename `--env` to not conflicting names with the [RFC](rust-lang/rfcs#2794). r? `@davidtwco`
Configuration menu - View commit details
-
Copy full SHA for c997b29 - Browse repository at this point
Copy the full SHA c997b29View commit details -
Rollup merge of rust-lang#119885 - DianQK:revert-pr-113923, r=petroch…
…enkov Revert rust-lang#113923 Per [#t-compiler/meetings > [weekly] 2024-01-11](https://rust-lang.zulipchat.com/#narrow/stream/238009-t-compiler.2Fmeetings/topic/.5Bweekly.5D.202024-01-11) discussion, revert rust-lang#113923. Also revert associated rust-lang#118568. The PR rust-lang#113923 causes the regression issue rust-lang#118609. We need more time to find a proper solution. Discussions start at [412365838](https://rust-lang.zulipchat.com/#narrow/stream/238009-t-compiler.2Fmeetings/topic/.5Bweekly.5D.202024-01-11/near/412365838) and continue to [412369643](https://rust-lang.zulipchat.com/#narrow/stream/238009-t-compiler.2Fmeetings/topic/.5Bweekly.5D.202024-01-11/near/412369643). Fixes rust-lang#118609. r? compiler
Configuration menu - View commit details
-
Copy full SHA for dafbe17 - Browse repository at this point
Copy the full SHA dafbe17View commit details