summaryrefslogtreecommitdiffstats
path: root/src/test/ui/use/use-after-move-implicity-coerced-object.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/use/use-after-move-implicity-coerced-object.stderr')
-rw-r--r--src/test/ui/use/use-after-move-implicity-coerced-object.stderr8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/test/ui/use/use-after-move-implicity-coerced-object.stderr b/src/test/ui/use/use-after-move-implicity-coerced-object.stderr
index 26804216d..dfa0c0483 100644
--- a/src/test/ui/use/use-after-move-implicity-coerced-object.stderr
+++ b/src/test/ui/use/use-after-move-implicity-coerced-object.stderr
@@ -9,6 +9,14 @@ LL | l.push(n);
LL |
LL | let x = n.to_string();
| ^^^^^^^^^^^^^ value borrowed here after move
+ |
+note: consider changing this parameter type in method `push` to borrow instead if owning the value isn't necessary
+ --> $DIR/use-after-move-implicity-coerced-object.rs:17:27
+ |
+LL | fn push(&mut self, n: Box<dyn ToString + 'static>) {
+ | ---- ^^^^^^^^^^^^^^^^^^^^^^^^^^^ this parameter takes ownership of the value
+ | |
+ | in this method
error: aborting due to previous error