]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/async-await/issues/issue-66958-non-copy-infered-type-arg.stderr
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.stderr
index 9177b83dd48d776ac5d7601808db5a6e0233177a..e2a73539874e03577b0d46da8d5797da04ef7abb 100644 (file)
@@ -1,12 +1,12 @@
-error[E0382]: use of moved value: `self`
+error[E0382]: use of partially moved value: `self`
   --> $DIR/issue-66958-non-copy-infered-type-arg.rs:11:20
    |
 LL |         Self::partial(self.0);
-   |                       ------ value moved here
+   |                       ------ value partially moved here
 LL |         Self::full(self);
    |                    ^^^^ value used here after partial move
    |
-   = note: move occurs because `self.0` has type `S`, which does not implement the `Copy` trait
+   = note: partial move occurs because `self.0` has type `S`, which does not implement the `Copy` trait
 
 error: aborting due to previous error