]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/borrowck-move-out-of-overloaded-auto-deref.stderr
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / ui / borrowck / borrowck-move-out-of-overloaded-auto-deref.stderr
1 error[E0507]: cannot move out of an `Rc`
2   --> $DIR/borrowck-move-out-of-overloaded-auto-deref.rs:4:14
3    |
4 LL |     let _x = Rc::new(vec![1, 2]).into_iter();
5    |              ^^^^^^^^^^^^^^^^^^^^-----------
6    |              |                   |
7    |              |                   value moved due to this method call
8    |              move occurs because value has type `Vec<i32>`, which does not implement the `Copy` trait
9    |
10 note: `into_iter` takes ownership of the receiver `self`, which moves value
11   --> $SRC_DIR/core/src/iter/traits/collect.rs:LL:COL
12 help: you can `clone` the value and consume it, but this might not be your desired behavior
13    |
14 LL |     let _x = Rc::new(vec![1, 2]).clone().into_iter();
15    |                                  ++++++++
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0507`.