rust/tests/ui/threads-sendsync/sync-send-atomics.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
254 B
Rust
Raw Normal View History

// run-pass
// pretty-expanded FIXME #23616
use std::sync::atomic::*;
trait SendSync: Send + Sync {}
impl SendSync for AtomicBool {}
impl SendSync for AtomicIsize {}
impl SendSync for AtomicUsize {}
impl<T> SendSync for AtomicPtr<T> {}
fn main() {}