]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/async-await/issues/issue-66958-non-copy-infered-type-arg.rs
Auto merge of #75912 - scottmcm:manuallydrop-vs-forget, r=Mark-Simulacrum
[rust.git] / src / test / ui / async-await / issues / issue-66958-non-copy-infered-type-arg.rs
index c8c2702ec447efd85b05c5d797ecbecb00e586aa..b7a976a0af6967188eb6f1537723d863cb466930 100644 (file)
@@ -8,7 +8,7 @@ fn full(self) {}
 
     async fn crash(self) {
         Self::partial(self.0);
-        Self::full(self); //~ ERROR use of moved value: `self`
+        Self::full(self); //~ ERROR use of partially moved value: `self`
     }
 }