]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/borrowck-move-out-of-overloaded-auto-deref.stderr
Rollup merge of #105500 - oli-obk:unhide_unknown_spans, r=estebank
[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: `into_iter` takes ownership of the receiver `self`, which moves value
11   --> $SRC_DIR/core/src/iter/traits/collect.rs:LL:COL
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0507`.