blob: 393cf91efc2d2101446a8368538f17df18121553 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
use std::ops::Deref;
trait MyTrait: Deref<Target = u32> {}
struct MyStruct(u32);
impl MyTrait for MyStruct {}
impl Deref for MyStruct {
type Target = u32;
fn deref(&self) -> &Self::Target {
&self.0
}
}
fn get_concrete_value(i: u32) -> MyStruct {
MyStruct(i)
}
fn get_boxed_value(i: u32) -> Box<dyn MyTrait> {
Box::new(get_concrete_value(i))
}
fn main() {
let v = [1, 2, 3]
.iter()
.map(|i| get_boxed_value(*i))
.collect::<Vec<_>>();
let el = &v[0];
for _ in v {
//~^ ERROR cannot move out of `v` because it is borrowed
println!("{}", ***el > 0);
}
}
|