]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/borrowck-move-out-of-overloaded-auto-deref.stderr
Auto merge of #88652 - AGSaidi:linux-aarch64-should-be-actually-monotonic, r=yaahc
[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    |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ move occurs because value has type `Vec<i32>`, which does not implement the `Copy` trait
6
7 error: aborting due to previous error
8
9 For more information about this error, try `rustc --explain E0507`.