mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
13 lines
206 B
Rust
13 lines
206 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);
|
|
}
|