mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
208 B
Rust
13 lines
208 B
Rust
//@ run-pass
|
|
//@ aux-build:cci_intrinsic.rs
|
|
|
|
|
|
extern crate cci_intrinsic;
|
|
use cci_intrinsic::atomic_xchg_seqcst;
|
|
|
|
pub fn main() {
|
|
let mut x = 1;
|
|
atomic_xchg_seqcst(&mut x, 5);
|
|
assert_eq!(x, 5);
|
|
}
|