mirror of https://github.com/rust-lang/rust.git
22 lines
809 B
Plaintext
22 lines
809 B
Plaintext
error[E0382]: use of moved value: `g1`
|
|
--> $DIR/region-var-in-moved-ty-issue-133118.rs:22:15
|
|
|
|
|
LL | let g1 = beta.gamma();
|
|
| -- move occurs because `g1` has type `<&B as Beta>::Gamma`, which does not implement the `Copy` trait
|
|
LL | a(g1) + a(g1)
|
|
| -- ^^ value used here after move
|
|
| |
|
|
| value moved here
|
|
|
|
|
note: consider changing this parameter type in function `a` to borrow instead if owning the value isn't necessary
|
|
--> $DIR/region-var-in-moved-ty-issue-133118.rs:12:24
|
|
|
|
|
LL | pub fn a<T: Alpha>(_x: T) -> usize {
|
|
| - ^ this parameter takes ownership of the value
|
|
| |
|
|
| in this function
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0382`.
|