]>
Commit | Line | Data |
---|---|---|
b7449926 | 1 | // run-pass |
223e47cc LB |
2 | // aux-build:cci_intrinsic.rs |
3 | ||
c34b1796 | 4 | |
1a4d82fc | 5 | extern crate cci_intrinsic; |
064997fb | 6 | use cci_intrinsic::atomic_xchg_seqcst; |
223e47cc LB |
7 | |
8 | pub fn main() { | |
1a4d82fc | 9 | let mut x = 1; |
064997fb | 10 | atomic_xchg_seqcst(&mut x, 5); |
1a4d82fc | 11 | assert_eq!(x, 5); |
223e47cc | 12 | } |