File tree 2 files changed +4
-0
lines changed 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -170,6 +170,7 @@ symbols! {
170
170
CallOnceFuture ,
171
171
CallRefFuture ,
172
172
Capture ,
173
+ Cell ,
173
174
Center ,
174
175
Cleanup ,
175
176
Clone ,
@@ -321,6 +322,7 @@ symbols! {
321
322
SubdiagMessage ,
322
323
Subdiagnostic ,
323
324
Sync ,
325
+ SyncUnsafeCell ,
324
326
T ,
325
327
Target ,
326
328
ToOwned ,
Original file line number Diff line number Diff line change @@ -304,6 +304,7 @@ pub use once::OnceCell;
304
304
/// ```
305
305
///
306
306
/// See the [module-level documentation](self) for more.
307
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "Cell" ) ]
307
308
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
308
309
#[ repr( transparent) ]
309
310
pub struct Cell < T : ?Sized > {
@@ -2295,6 +2296,7 @@ impl<T> UnsafeCell<*mut T> {
2295
2296
/// making this type just as unsafe to use.
2296
2297
///
2297
2298
/// See [`UnsafeCell`] for details.
2299
+ #[ cfg_attr( not( test) , rustc_diagnostic_item = "SyncUnsafeCell" ) ]
2298
2300
#[ unstable( feature = "sync_unsafe_cell" , issue = "95439" ) ]
2299
2301
#[ repr( transparent) ]
2300
2302
pub struct SyncUnsafeCell < T : ?Sized > {
You can’t perform that action at this time.
0 commit comments