]> git.lizzy.rs Git - rust.git/blob - tests/ui/use/use-after-move-based-on-type.stderr
Don't resolve type var roots in point_at_expr_source_of_inferred_type
[rust.git] / tests / ui / use / use-after-move-based-on-type.stderr
1 error[E0382]: borrow of moved value: `x`
2   --> $DIR/use-after-move-based-on-type.rs:4:20
3    |
4 LL |     let x = "Hello!".to_string();
5    |         - move occurs because `x` has type `String`, which does not implement the `Copy` trait
6 LL |     let _y = x;
7    |              - value moved here
8 LL |     println!("{}", x);
9    |                    ^ value borrowed here after move
10    |
11    = note: this error originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)
12 help: consider cloning the value if the performance cost is acceptable
13    |
14 LL |     let _y = x.clone();
15    |               ++++++++
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0382`.