rust/src/test/ui/issues/issue-34721.stderr

21 lines
703 B
Plaintext
Raw Normal View History

2019-01-02 18:56:45 -06:00
error[E0382]: use of moved value: `x`
--> $DIR/issue-34721.rs:25:9
2019-01-02 18:56:45 -06:00
|
LL | pub fn baz<T: Foo>(x: T) -> T {
| - - move occurs because `x` has type `T`, which does not implement the `Copy` trait
| |
| consider adding a `Copy` constraint to this type argument
2019-01-02 18:56:45 -06:00
LL | if 0 == 1 {
LL | bar::bar(x.zero())
| - value moved here
LL | } else {
LL | x.zero()
| - value moved here
LL | };
LL | x.zero()
| ^ value used here after move
error: aborting due to previous error
For more information about this error, try `rustc --explain E0382`.