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

alloc: add ToString specialization for &&str #128759

Merged
merged 4 commits into from
Aug 14, 2024

Commits on Aug 6, 2024

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

Commits on Aug 7, 2024

  1. diagnostics: Box<dyn Trait> suggestion with multiple matching impl

    The two altered expectation messages both seem like improvements:
    
    - `coerce-expect-unsized-ascribed.stderr` says you can go
      `Box<char> -> Box<dyn Debug>`, which you can.
    - `upcast_soundness_bug.stderr` used to say that you could go
      `Box<dyn Trait<u8, u8>> -> Box<dyn Trait>`, which you can't,
      because the type parameters are missing in the destination
      and the only ones that work aren't what's needed.
    notriddle committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    20c833c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3312f5d View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2024

  1. diagnostics: use DeepRejectCtxt for check

    This makes more things match, particularly applicable blankets.
    notriddle committed Aug 13, 2024
    Configuration menu
    Copy the full SHA
    c6fb0f3 View commit details
    Browse the repository at this point in the history