]> git.proxmox.com Git - rustc.git/blob - src/test/ui/walk-struct-literal-with.stderr
New upstream version 1.64.0+dfsg1
[rustc.git] / src / test / ui / walk-struct-literal-with.stderr
1 error[E0382]: borrow of moved value: `start`
2 --> $DIR/walk-struct-literal-with.rs:16:20
3 |
4 LL | let start = Mine{test:"Foo".to_string(), other_val:0};
5 | ----- move occurs because `start` has type `Mine`, which does not implement the `Copy` trait
6 LL | let end = Mine{other_val:1, ..start.make_string_bar()};
7 | ----------------- `start` moved due to this method call
8 LL | println!("{}", start.test);
9 | ^^^^^^^^^^ value borrowed here after move
10 |
11 note: this function takes ownership of the receiver `self`, which moves `start`
12 --> $DIR/walk-struct-literal-with.rs:7:28
13 |
14 LL | fn make_string_bar(mut self) -> Mine{
15 | ^^^^
16 = 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)
17
18 error: aborting due to previous error
19
20 For more information about this error, try `rustc --explain E0382`.