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

Conversation

notriddle
Copy link
Contributor

Fixes #128690

@rustbot
Copy link
Collaborator

rustbot commented Aug 6, 2024

r? @workingjubilee

rustbot has assigned @workingjubilee.
They will have a look at your PR within the next two weeks and either review your PR or reassign to another reviewer.

Use r? to explicitly pick a reviewer

@rustbot rustbot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-libs Relevant to the library team, which will review and decide on the PR/issue. labels Aug 6, 2024
@workingjubilee
Copy link
Member

it just keeps going...

@rust-log-analyzer

This comment has been minimized.

@workingjubilee
Copy link
Member

workingjubilee commented Aug 6, 2024

This seems to induce a diagnostic regression?

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
Copy link
Contributor Author

@workingjubilee

This seems to induce a diagnostic regression?

Yeah, it did.

It seems like a bug in the actual diagnostics code, though. So I've added a second commit to address it. Should I open a second PR with just the one commit?

@workingjubilee
Copy link
Member

workingjubilee commented Aug 7, 2024

It would probably be best if someone on T-compiler reviewed the diagnostics amendment so however you want to arrange for that to happen is fine by me (separate PR, pinging someone, whatevs).

Copy link
Member

@workingjubilee workingjubilee left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤔 I want to accept this PR but I also want a slightly less gnarly macro if at all possible, because most of our macros are very straightforward, and this... bucks that trend.

@notriddle
Copy link
Contributor Author

Okay, next commit is a slightly less complex version of the macro. Since there's only 12 impls, the self-recursion goes away entirely, and the other two helpers are separated out into their own macros.

@notriddle
Copy link
Contributor Author

r? compiler

@rustbot rustbot added the T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. label Aug 7, 2024
@rustbot rustbot assigned pnkfelix and unassigned workingjubilee Aug 7, 2024
@rust-log-analyzer

This comment has been minimized.

@notriddle notriddle force-pushed the notriddle/spec-to-string branch from ffa62b2 to 3312f5d Compare August 7, 2024 17:06
Copy link
Member

@workingjubilee workingjubilee left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

r=me with T-compiler OK on the compiler diff.

This makes more things match, particularly applicable blankets.
@notriddle notriddle force-pushed the notriddle/spec-to-string branch from b0af854 to c6fb0f3 Compare August 13, 2024 17:10
@compiler-errors
Copy link
Member

@bors r=workingjubilee,compiler-errors

@bors
Copy link
Collaborator

bors commented Aug 13, 2024

📌 Commit c6fb0f3 has been approved by workingjubilee,compiler-errors

It is now in the queue for this repository.

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Aug 13, 2024
bors added a commit to rust-lang-ci/rust that referenced this pull request Aug 14, 2024
…iaskrgr

Rollup of 6 pull requests

Successful merges:

 - rust-lang#128410 (Migrate `remap-path-prefix-dwarf` `run-make` test to rmake)
 - rust-lang#128759 (alloc: add ToString specialization for `&&str`)
 - rust-lang#128873 (Add windows-targets crate to std's sysroot)
 - rust-lang#129001 (chore(lib): Enhance documentation for core::fmt::Formatter's write_fm…)
 - rust-lang#129061 (Use `is_lang_item` more)
 - rust-lang#129062 (Remove a no-longer-true assert)

r? `@ghost`
`@rustbot` modify labels: rollup
@bors bors merged commit 85180cd into rust-lang:master Aug 14, 2024
6 checks passed
@rustbot rustbot added this to the 1.82.0 milestone Aug 14, 2024
rust-timer added a commit to rust-lang-ci/rust that referenced this pull request Aug 14, 2024
Rollup merge of rust-lang#128759 - notriddle:notriddle/spec-to-string, r=workingjubilee,compiler-errors

alloc: add ToString specialization for `&&str`

Fixes rust-lang#128690
@notriddle notriddle deleted the notriddle/spec-to-string branch August 14, 2024 14:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

rustc suggests calling to_string() on &&str but this generates inefficient code.
7 participants