-
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 #111919
Rollup of 6 pull requests #111919
Conversation
…h726 Work around `rust-analyzer` false-positive type errors rust-analyzer incorrectly reports two type errors in `debug.rs`: > expected &dyn Display, found &i32 > expected &dyn Display, found &i32 This is due to a known bug in r-a: (rust-lang/rust-analyzer#11847). In these particular cases, changing `&0` to `&0i32` seems to be enough to avoid the bug.
Leverage the interval property to precompute borrow kill points.
…s, r=compiler-errors Run AST validation on match guards correctly AST validation was being skipped on match guards other than `if let` guards.
Split out opaque collection from from `type_of` requested by lcnr r? `@lcnr`
…b-naber Don't skip mir typeck if body has errors Comment says: ``` // if verifier failed, don't do further checks to avoid ICEs ``` But there are no ICEs to be found. The comment is quite old, so perhaps something fixed it... maybe because the MIR typechecker is delaying span bugs rather than panicking via eager bugs? IDK I'm generally inclined to fix the ICEs themselves that were to arise from this, rather than just totally skipping large parts of the compiler that have impacts on downstream logic (namely, our opaque type results are affected). Anyways, this happens on the error path, so it shouldn't really matter. Fixes this hack: https://github.com/rust-lang/rust/pull/111853/files#r1201501540
…lor-6, r=notriddle Migrate GUI colors test to original CSS color format Follow-up of rust-lang#111459. r? `@notriddle`
@bors r+ rollup=never p=6 |
☀️ Test successful - checks-actions |
📌 Perf builds for each rolled up PR: previous master: c373194cb6 In the case of a perf regression, run the following command for each PR you suspect might be the cause: |
Finished benchmarking commit (096309e): comparison URL. Overall result: ✅ improvements - no action needed@rustbot label: -perf-regression Instruction countThis is a highly reliable metric that was used to determine the overall result at the top of this comment.
Max RSS (memory usage)ResultsThis is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesThis benchmark run did not return any relevant results for this metric. Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 647.009s -> 645.884s (-0.17%) |
Successful merges:
rust-analyzer
false-positive type errors #111121 (Work aroundrust-analyzer
false-positive type errors)type_of
#111862 (Split out opaque collection from fromtype_of
)r? @ghost
@rustbot modify labels: rollup
Create a similar rollup