-
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 5 pull requests #112055
Rollup of 5 pull requests #112055
Conversation
…-def, r=cjgillot Recover upon mistyped error on typo'd `const` in const param def And add machine-applicable fix for the typo'd `const` keyword. ### Before ``` error: expected one of `,`, `:`, `=`, or `>`, found `N` --> src/lib.rs:1:18 | 1 | pub fn bar<Const N: u8>() {} | ^ expected one of `,`, `:`, `=`, or `>` ``` ### After This PR ``` error: `const` keyword was mistyped as `Const` --> test.rs:1:8 | 1 | fn bar<Const N: u8>() {} | ^^^^^ | help: use the `const` keyword | 1 | fn bar<const N: u8>() {} | ~~~~~ ``` Fixes rust-lang#111941.
…fn, r=petrochenkov Add details about `unsafe_op_in_unsafe_fn` to E0133 This was mentioned in rust-lang#99827 (comment)
…date, r=jackh726 compiler: update solaris/illumos to enable tsan support.
…lor-8, r=notriddle Migrate GUI colors test to original CSS color format Follow-up of rust-lang#111459. r? `@notriddle`
Followup to rust-lang#111973 I somehow forgot to update the comment on `select_nth_unstable_by_key` in rust-lang#111973, so this PR fixes that. r? `@Amanieu`
@bors r+ rollup=never p=5 |
☀️ Test successful - checks-actions |
📌 Perf builds for each rolled up PR: previous master: f8447b9638 In the case of a perf regression, run the following command for each PR you suspect might be the cause: |
Finished benchmarking commit (dc0943d): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)This benchmark run did not return any relevant results for this metric. CyclesResultsThis 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.
Binary sizeThis benchmark run did not return any relevant results for this metric. Bootstrap: 644.623s -> 642.999s (-0.25%) |
Successful merges:
const
in const param def #112029 (Recover upon mistyped error on typo'dconst
in const param def)unsafe_op_in_unsafe_fn
to E0133 #112037 (Add details aboutunsafe_op_in_unsafe_fn
to E0133)select_nth_unstable
#111973)r? @ghost
@rustbot modify labels: rollup
Create a similar rollup