]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/borrowck/borrowck-partial-reinit-3.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / borrowck / borrowck-partial-reinit-3.rs
index c7fbd7fc8813533394f4236afc89939e775e36c6..ca484315ba5d65e87570b0ebe5401441d0bb3ab6 100644 (file)
@@ -9,5 +9,5 @@ fn main() {
     let mut x = (Test { f: 2 }, Test { f: 4 });
     mem::drop(x.0);
     x.0.f = 3;
-    //~^ ERROR partial reinitialization of uninitialized structure `x.0`
+    //~^ ERROR assign of moved value: `x.0`
 }