mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-02 21:17:39 +00:00

Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
14 lines
225 B
Rust
14 lines
225 B
Rust
//@ check-pass
|
|
|
|
|
|
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() {}
|