diff options
| author | bors <bors@rust-lang.org> | 2024-04-14 00:03:53 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-04-14 00:03:53 +0000 |
| commit | 7ab5eb8fe7aee35aea8ed4aed8c34f6abd988cc5 (patch) | |
| tree | 777af5e88ef71b62636b35a9c232337fae4e73f0 /tests | |
| parent | 0bf471f339837af930ec90ef5e1e9cb232e99f29 (diff) | |
| parent | 0f52cd0e71adf4d0062a15afdfd2a9cb832e3052 (diff) | |
| download | rust-7ab5eb8fe7aee35aea8ed4aed8c34f6abd988cc5.tar.gz rust-7ab5eb8fe7aee35aea8ed4aed8c34f6abd988cc5.zip | |
Auto merge of #123819 - joboet:fmt_usize_marker, r=Mark-Simulacrum
Get rid of `USIZE_MARKER` in formatting infrastructure An alternative to #123780. The `USIZE_MARKER` function used to differentiate between placeholder and count arguments is never called anyway, so we can just replace the function-pointer-comparison hack with an `enum` and an `unreachable_unchecked`, hopefully without causing a regression. CC `@RalfJung`
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/ui/fmt/send-sync.stderr | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/ui/fmt/send-sync.stderr b/tests/ui/fmt/send-sync.stderr index aa377553c50..bebf575d9a7 100644 --- a/tests/ui/fmt/send-sync.stderr +++ b/tests/ui/fmt/send-sync.stderr @@ -8,6 +8,8 @@ LL | send(format_args!("{:?}", c)); | = help: within `[core::fmt::rt::Argument<'_>]`, the trait `Sync` is not implemented for `core::fmt::rt::Opaque`, which is required by `Arguments<'_>: Send` = note: required because it appears within the type `&core::fmt::rt::Opaque` +note: required because it appears within the type `core::fmt::rt::ArgumentType<'_>` + --> $SRC_DIR/core/src/fmt/rt.rs:LL:COL note: required because it appears within the type `core::fmt::rt::Argument<'_>` --> $SRC_DIR/core/src/fmt/rt.rs:LL:COL = note: required because it appears within the type `[core::fmt::rt::Argument<'_>]` @@ -30,6 +32,8 @@ LL | sync(format_args!("{:?}", c)); | = help: within `Arguments<'_>`, the trait `Sync` is not implemented for `core::fmt::rt::Opaque`, which is required by `Arguments<'_>: Sync` = note: required because it appears within the type `&core::fmt::rt::Opaque` +note: required because it appears within the type `core::fmt::rt::ArgumentType<'_>` + --> $SRC_DIR/core/src/fmt/rt.rs:LL:COL note: required because it appears within the type `core::fmt::rt::Argument<'_>` --> $SRC_DIR/core/src/fmt/rt.rs:LL:COL = note: required because it appears within the type `[core::fmt::rt::Argument<'_>]` |
