]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/borrowck-move-out-of-overloaded-auto-deref.stderr
Rollup merge of #94855 - m-ou-se:advance-slice-panic-docs, r=kennytm
[rust.git] / src / test / 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: this function takes ownership of the receiver `self`, which moves value
11   --> $SRC_DIR/core/src/iter/traits/collect.rs:LL:COL
12    |
13 LL |     fn into_iter(self) -> Self::IntoIter;
14    |                  ^^^^
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0507`.