From 49b26d2d7703f46f4fd1d3baea2c2e3b177a8afb Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Thu, 14 Dec 2023 19:19:02 -0800 Subject: [PATCH] Update ui test suite to nightly-2023-12-15 --- tests/ui/test-not-send.stderr | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/ui/test-not-send.stderr b/tests/ui/test-not-send.stderr index c720f378..ea846075 100644 --- a/tests/ui/test-not-send.stderr +++ b/tests/ui/test-not-send.stderr @@ -5,7 +5,7 @@ error[E0277]: `proc_macro::Span` cannot be sent between threads safely | ^^^^ `proc_macro::Span` cannot be sent between threads safely | = help: within `Span`, the trait `Send` is not implemented for `proc_macro::Span` -note: required because it appears within the type `Span` +note: required because it appears within the type `proc_macro2::imp::Span` --> $WORKSPACE/src/wrapper.rs | | pub(crate) enum Span { @@ -28,12 +28,12 @@ error[E0277]: `Rc<()>` cannot be sent between threads safely | ^^^^ `Rc<()>` cannot be sent between threads safely | = help: within `Span`, the trait `Send` is not implemented for `Rc<()>` -note: required because it appears within the type `ProcMacroAutoTraits` +note: required because it appears within the type `proc_macro2::marker::ProcMacroAutoTraits` --> $WORKSPACE/src/marker.rs | | pub(crate) struct ProcMacroAutoTraits(Rc<()>); | ^^^^^^^^^^^^^^^^^^^ -note: required because it appears within the type `PhantomData` +note: required because it appears within the type `PhantomData` --> $RUST/core/src/marker.rs | | pub struct PhantomData;