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
258 B
Rust
Raw Normal View History

2024-02-07 02:42:01 +00:00
//@ check-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() {}