]> git.proxmox.com Git - rustc.git/blame - tests/ui/generator/issue-105084.drop_tracking_mir.stderr
Merge 1.70 into proxmox/bookworm
[rustc.git] / tests / ui / generator / issue-105084.drop_tracking_mir.stderr
CommitLineData
9ffffee4 1error[E0382]: borrow of moved value: `g`
353b0b11 2 --> $DIR/issue-105084.rs:45:14
9ffffee4
FG
3 |
4LL | let mut g = || {
5 | ----- move occurs because `g` has type `[generator@$DIR/issue-105084.rs:22:17: 22:19]`, which does not implement the `Copy` trait
6...
7LL | let mut h = copy(g);
8 | - value moved here
9...
10LL | Pin::new(&mut g).resume(());
11 | ^^^^^^ value borrowed here after move
12 |
13note: consider changing this parameter type in function `copy` to borrow instead if owning the value isn't necessary
14 --> $DIR/issue-105084.rs:17:21
15 |
16LL | fn copy<T: Copy>(x: T) -> T {
17 | ---- ^ this parameter takes ownership of the value
18 | |
19 | in this function
20help: consider cloning the value if the performance cost is acceptable
21 |
22LL | let mut h = copy(g.clone());
23 | ++++++++
24
25error[E0277]: the trait bound `Box<(i32, ())>: Copy` is not satisfied in `[generator@$DIR/issue-105084.rs:22:17: 22:19]`
353b0b11 26 --> $DIR/issue-105084.rs:39:17
9ffffee4
FG
27 |
28LL | let mut g = || {
29 | -- within this `[generator@$DIR/issue-105084.rs:22:17: 22:19]`
30...
31LL | let mut h = copy(g);
32 | ^^^^ within `[generator@$DIR/issue-105084.rs:22:17: 22:19]`, the trait `Copy` is not implemented for `Box<(i32, ())>`
33 |
34note: generator does not implement `Copy` as this value is used across a yield
353b0b11 35 --> $DIR/issue-105084.rs:29:22
9ffffee4 36 |
353b0b11
FG
37LL | Box::new((5, yield));
38 | -------------^^^^^--
39 | | |
40 | | yield occurs here, with `Box::new((5, yield))` maybe used later
41 | has type `Box<(i32, ())>` which does not implement `Copy`
9ffffee4
FG
42note: required by a bound in `copy`
43 --> $DIR/issue-105084.rs:17:12
44 |
45LL | fn copy<T: Copy>(x: T) -> T {
46 | ^^^^ required by this bound in `copy`
47
48error: aborting due to 2 previous errors
49
50Some errors have detailed explanations: E0277, E0382.
51For more information about an error, try `rustc --explain E0277`.