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 7 pull requests #106214

Closed
wants to merge 17 commits into from

Commits on Dec 27, 2022

  1. Configuration menu
    Copy the full SHA
    1b341fe View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    43b2486 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8bf7ec7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f66e752 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    aff403c View commit details
    Browse the repository at this point in the history
  6. Account for multiple multiline spans with empty padding

    Instead of
    
    ```
    LL |    fn oom(
       |  __^
       | | _|
       | ||
    LL | || ) {
       | ||_-
    LL | |  }
       | |__^
    ```
    
    emit
    
    ```
    LL | // fn oom(
    LL | || ) {
       | ||_-
    LL | |  }
       | |__^
       ```
    estebank committed Dec 27, 2022
    Configuration menu
    Copy the full SHA
    83c635c View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    5c0b60f View commit details
    Browse the repository at this point in the history
  8. review comments

    estebank committed Dec 27, 2022
    Configuration menu
    Copy the full SHA
    df2a35e View commit details
    Browse the repository at this point in the history
  9. Shorten type in note

    estebank committed Dec 27, 2022
    Configuration menu
    Copy the full SHA
    b400bde View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2022

  1. Configuration menu
    Copy the full SHA
    8e039b6 View commit details
    Browse the repository at this point in the history
  2. Rollup merge of rust-lang#106028 - Ezrashaw:add-docs+test-e0461, r=Gu…

    …illaumeGomez
    
    docs/test: add UI test and long-form error docs for `E0461`
    
    Might take a couple of tries to pass CI. The UI test is x86-linux only; I'm not sure how to generalize it to other architectures.
    
    r? `@GuillaumeGomez`
    matthiaskrgr authored Dec 28, 2022
    Configuration menu
    Copy the full SHA
    72ef979 View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#106172 - estebank:suggest-impl-trait, r=com…

    …piler-errors
    
    Suggest `impl Iterator` when possible for `_` return type
    
    Address rust-lang#106096.
    matthiaskrgr authored Dec 28, 2022
    Configuration menu
    Copy the full SHA
    d40f16e View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#106173 - compiler-errors:deduplicate-op-met…

    …hods, r=jackh726
    
    Deduplicate `op` methods
    
    There are some operator-checking flavored methods in `FnCtxt` that can be deduplicated.
    matthiaskrgr authored Dec 28, 2022
    Configuration menu
    Copy the full SHA
    9dc0474 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#106176 - compiler-errors:fn-kw-as-fn-trait,…

    … r=estebank
    
    Recover `fn` keyword as `Fn` trait in bounds
    
    `impl fn()` -> `impl Fn()`
    
    Fixes rust-lang#82515
    matthiaskrgr authored Dec 28, 2022
    Configuration menu
    Copy the full SHA
    9abb639 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#106190 - estebank:multiline-start-tweak, r=…

    …jackh726
    
    Account for multiple multiline spans with empty padding
    
    Instead of
    
    ```
    LL |    fn oom(
       |  __^
       | | _|
       | ||
    LL | || ) {
       | ||_-
    LL | |  }
       | |__^
    ```
    
    emit
    
    ```
    LL | // fn oom(
    LL | || ) {
       | ||_-
    LL | |  }
       | |__^
       ```
    matthiaskrgr authored Dec 28, 2022
    Configuration menu
    Copy the full SHA
    5b1eb1d View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#106194 - notriddle:notriddle/sidebar-backgr…

    …ound, r=GuillaumeGomez
    
    rustdoc: combine common sidebar background color CSS rules
    matthiaskrgr authored Dec 28, 2022
    Configuration menu
    Copy the full SHA
    7217191 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#106199 - estebank:quiet-type-err-in-binding…

    …, r=compiler-errors
    
    Silence knock-down errors on `[type error]` bindings
    
    Fix rust-lang#56036, fix rust-lang#76589.
    matthiaskrgr authored Dec 28, 2022
    Configuration menu
    Copy the full SHA
    d4b36fd View commit details
    Browse the repository at this point in the history