Skip to content

Commit c547b45

Browse files
committed
Remove now unused SyncUnsafeCell diagnostic item
1 parent 97fb5ad commit c547b45

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

compiler/rustc_span/src/symbol.rs

-1
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,6 @@ symbols! {
316316
SubdiagMessage,
317317
Subdiagnostic,
318318
Sync,
319-
SyncUnsafeCell,
320319
T,
321320
Target,
322321
ToOwned,

library/core/src/cell.rs

-1
Original file line numberDiff line numberDiff line change
@@ -2274,7 +2274,6 @@ impl<T: DispatchFromDyn<U>, U> DispatchFromDyn<UnsafeCell<U>> for UnsafeCell<T>
22742274
/// See [`UnsafeCell`] for details.
22752275
#[unstable(feature = "sync_unsafe_cell", issue = "95439")]
22762276
#[repr(transparent)]
2277-
#[rustc_diagnostic_item = "SyncUnsafeCell"]
22782277
#[rustc_pub_transparent]
22792278
pub struct SyncUnsafeCell<T: ?Sized> {
22802279
value: UnsafeCell<T>,

0 commit comments

Comments
 (0)