Make Send Sync
Wrapper types to unsafely make any type Send and/or Sync.
use ;
use ;
//!
// A type that is not Send or Sync
let not_thread_safe: *const u8 = dangling;
//!
let wrapped: = unsafe ;
//!
//!
// `wrapper` is Send + Sync, even though `not_thread_safe` is not.
assert_send_sync;
//!
// Look! SyncUnsafeCell on stable!
static MY_CELL: = unsafe ;