2012-07-24 14:55:38 -07:00
|
|
|
// xfail-fast - check-fast doesn't understand aux-build
|
|
|
|
// aux-build:cci_intrinsic.rs
|
|
|
|
|
2012-07-24 14:56:59 -07:00
|
|
|
// xfail-test
|
2012-07-24 14:55:38 -07:00
|
|
|
|
|
|
|
use cci_intrinsic;
|
|
|
|
import cci_intrinsic::atomic_xchng;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut x = 1;
|
|
|
|
atomic_xchng(x, 5);
|
|
|
|
assert x == 5;
|
|
|
|
}
|