1/// Marker for types that are `Sync` but not `Send`
2#[allow(dead_code)]
3pub(crate) struct SyncNotSend(#[allow(dead_code)] *mut ());
45unsafe impl Sync for SyncNotSend {}
67cfg_rt! {
8pub(crate) struct NotSendOrSync(#[allow(dead_code)] *mut ());
9}