Skip to content
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

Merged
merged 10 commits into from
May 29, 2023
Merged

Rollup of 5 pull requests #112055

merged 10 commits into from
May 29, 2023

Commits on May 28, 2023

  1. Configuration menu
    Copy the full SHA
    41f5a30 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8f94253 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1cae91e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    448a388 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2eaa4e6 View commit details
    Browse the repository at this point in the history

Commits on May 29, 2023

  1. 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.
    matthiaskrgr authored May 29, 2023
    Configuration menu
    Copy the full SHA
    45ca2f7 View commit details
    Browse the repository at this point in the history
  2. 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)
    matthiaskrgr authored May 29, 2023
    Configuration menu
    Copy the full SHA
    c5a93ba View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#112039 - devnexen:solarish_compiler_spec_up…

    …date, r=jackh726
    
    compiler: update solaris/illumos to enable tsan support.
    matthiaskrgr authored May 29, 2023
    Configuration menu
    Copy the full SHA
    1e07e5c View commit details
    Browse the repository at this point in the history
  4. 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`
    matthiaskrgr authored May 29, 2023
    Configuration menu
    Copy the full SHA
    760d46e View commit details
    Browse the repository at this point in the history
  5. 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`
    matthiaskrgr authored May 29, 2023
    Configuration menu
    Copy the full SHA
    e71b3b3 View commit details
    Browse the repository at this point in the history