-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Commits on May 28, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 41f5a30 - Browse repository at this point
Copy the full SHA 41f5a30View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8f94253 - Browse repository at this point
Copy the full SHA 8f94253View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1cae91e - Browse repository at this point
Copy the full SHA 1cae91eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 448a388 - Browse repository at this point
Copy the full SHA 448a388View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2eaa4e6 - Browse repository at this point
Copy the full SHA 2eaa4e6View commit details
Commits on May 29, 2023
-
Rollup merge of rust-lang#112029 - jieyouxu:typo-const-in-const-param…
…-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.
Configuration menu - View commit details
-
Copy full SHA for 45ca2f7 - Browse repository at this point
Copy the full SHA 45ca2f7View commit details -
Rollup merge of rust-lang#112037 - Nemo157:e0133-unsafe_op_in_unsafe_…
…fn, r=petrochenkov Add details about `unsafe_op_in_unsafe_fn` to E0133 This was mentioned in rust-lang#99827 (comment)
Configuration menu - View commit details
-
Copy full SHA for c5a93ba - Browse repository at this point
Copy the full SHA c5a93baView commit details -
Rollup merge of rust-lang#112039 - devnexen:solarish_compiler_spec_up…
…date, r=jackh726 compiler: update solaris/illumos to enable tsan support.
Configuration menu - View commit details
-
Copy full SHA for 1e07e5c - Browse repository at this point
Copy the full SHA 1e07e5cView commit details -
Rollup merge of rust-lang#112042 - GuillaumeGomez:migrate-gui-test-co…
…lor-8, r=notriddle Migrate GUI colors test to original CSS color format Follow-up of rust-lang#111459. r? `@notriddle`
Configuration menu - View commit details
-
Copy full SHA for 760d46e - Browse repository at this point
Copy the full SHA 760d46eView commit details -
Rollup merge of rust-lang#112045 - Sp00ph:update_current_impl, r=Amanieu
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`
Configuration menu - View commit details
-
Copy full SHA for e71b3b3 - Browse repository at this point
Copy the full SHA e71b3b3View commit details