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 #113458

Closed
wants to merge 17 commits into from

Commits on Jul 6, 2023

  1. Configuration menu
    Copy the full SHA
    906d2b1 View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2023

  1. Configuration menu
    Copy the full SHA
    7a83ef8 View commit details
    Browse the repository at this point in the history
  2. If re-export is private, get the next item until a public one is foun…

    …d or expose the private item directly
    GuillaumeGomez committed Jul 7, 2023
    Configuration menu
    Copy the full SHA
    d03b0f5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e3b7035 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    52a7615 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f37a6b0 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1d1951b View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    010ee7b View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    713f9bb View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    f55b046 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    4a1e06b View commit details
    Browse the repository at this point in the history
  11. Fix failing clippy tests

    Comments out the C string literals due to rust-lang#113334
    
    Fixes rust-lang/rust-clippy#11121
    Alexendoo committed Jul 7, 2023
    Configuration menu
    Copy the full SHA
    cedcd39 View commit details
    Browse the repository at this point in the history
  12. Rollup merge of rust-lang#113335 - compiler-errors:reveal-opaques-in-…

    …new-solver, r=lcnr
    
    Reveal opaques in new solver
    
    We were testing against the wrong reveal mode 😨
    
    Also a couple of misc commits that I don't want to really put in separate prs
    
    r? ``@lcnr``
    matthiaskrgr authored Jul 7, 2023
    Configuration menu
    Copy the full SHA
    c4925c7 View commit details
    Browse the repository at this point in the history
  13. Rollup merge of rust-lang#113374 - GuillaumeGomez:private-to-public-p…

    …ath, r=notriddle,fmease
    
    [rustdoc] If re-export is private, get the next item until a public one is found or expose the private item directly
    
    Fixes rust-lang#81141.
    
    If we have:
    
    ```rust
    use Private as Something;
    
    pub fn foo() -> Something {}
    ```
    
    Then `Something` will be replaced by `Private`.
    
    r? ``@notriddle``
    matthiaskrgr authored Jul 7, 2023
    Configuration menu
    Copy the full SHA
    01bace4 View commit details
    Browse the repository at this point in the history
  14. Rollup merge of rust-lang#113399 - compiler-errors:next-solver-byte-p…

    …at-again, r=oli-obk
    
    Structurally normalize again for byte string lit pat checking
    
    We need to structurally normalize the pointee of a match scrutinee when trying to match byte string patterns -- we used[^1] to call `structurally_resolve_type`, which errors for type vars[^2], but lcnr added `try_structurally_resolve_type`[^3] in the mean time, which is the right thing to use here since it's totally opportunistic.
    
    Fixes rust-lang/trait-system-refactor-initiative#38
    
    [^1]: rust-lang#112428
    [^2]: rust-lang#112993
    [^3]: rust-lang#113086
    matthiaskrgr authored Jul 7, 2023
    Configuration menu
    Copy the full SHA
    1808063 View commit details
    Browse the repository at this point in the history
  15. Rollup merge of rust-lang#113441 - RalfJung:assign-no-overlap, r=oli-obk

    miri: check that assignments do not self-overlap
    
    r? ``@oli-obk``
    matthiaskrgr authored Jul 7, 2023
    Configuration menu
    Copy the full SHA
    016036a View commit details
    Browse the repository at this point in the history
  16. Rollup merge of rust-lang#113455 - Alexendoo:clippy-tests, r=Nilstrieb

    Fix failing clippy tests
    
    Comments out the C string literals due to rust-lang#113334
    
    Fixes rust-lang/rust-clippy#11121
    
    Opened against `rust-lang/rust` in order to unblock rust-lang#113450
    
    r? `@Nilstrieb`
    matthiaskrgr authored Jul 7, 2023
    Configuration menu
    Copy the full SHA
    32566f7 View commit details
    Browse the repository at this point in the history