]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/std-uncopyable-atomics.rs
Update tests for changes to cannot move errors
[rust.git] / src / test / ui / std-uncopyable-atomics.rs
index 2c79a9c440e656e1926fed1b3ba9441f01490fe3..d85864ecac2853f6a88708177c8769d208257325 100644 (file)
@@ -6,11 +6,11 @@
 
 fn main() {
     let x = AtomicBool::new(false);
-    let x = *&x; //~ ERROR: cannot move out of borrowed content
+    let x = *&x; //~ ERROR: cannot move out of a shared reference
     let x = AtomicIsize::new(0);
-    let x = *&x; //~ ERROR: cannot move out of borrowed content
+    let x = *&x; //~ ERROR: cannot move out of a shared reference
     let x = AtomicUsize::new(0);
-    let x = *&x; //~ ERROR: cannot move out of borrowed content
+    let x = *&x; //~ ERROR: cannot move out of a shared reference
     let x: AtomicPtr<usize> = AtomicPtr::new(ptr::null_mut());
-    let x = *&x; //~ ERROR: cannot move out of borrowed content
+    let x = *&x; //~ ERROR: cannot move out of a shared reference
 }