|
1 | 1 | error[E0597]: `c2` does not live long enough
|
2 |
| - --> $DIR/dropck_vec_cycle_checked.rs:110:25 |
| 2 | + --> $DIR/dropck_vec_cycle_checked.rs:113:25 |
3 | 3 | |
|
4 | 4 | LL | c1.v[0].v.set(Some(&c2));
|
5 | 5 | | ^^ borrowed value does not live long enough
|
|
10 | 10 | = note: values in a scope are dropped in the opposite order they are created
|
11 | 11 |
|
12 | 12 | error[E0597]: `c3` does not live long enough
|
13 |
| - --> $DIR/dropck_vec_cycle_checked.rs:112:25 |
| 13 | + --> $DIR/dropck_vec_cycle_checked.rs:115:25 |
14 | 14 | |
|
15 | 15 | LL | c1.v[1].v.set(Some(&c3));
|
16 | 16 | | ^^ borrowed value does not live long enough
|
|
21 | 21 | = note: values in a scope are dropped in the opposite order they are created
|
22 | 22 |
|
23 | 23 | error[E0597]: `c2` does not live long enough
|
24 |
| - --> $DIR/dropck_vec_cycle_checked.rs:114:25 |
| 24 | + --> $DIR/dropck_vec_cycle_checked.rs:117:25 |
25 | 25 | |
|
26 | 26 | LL | c2.v[0].v.set(Some(&c2));
|
27 | 27 | | ^^ borrowed value does not live long enough
|
|
32 | 32 | = note: values in a scope are dropped in the opposite order they are created
|
33 | 33 |
|
34 | 34 | error[E0597]: `c3` does not live long enough
|
35 |
| - --> $DIR/dropck_vec_cycle_checked.rs:116:25 |
| 35 | + --> $DIR/dropck_vec_cycle_checked.rs:119:25 |
36 | 36 | |
|
37 | 37 | LL | c2.v[1].v.set(Some(&c3));
|
38 | 38 | | ^^ borrowed value does not live long enough
|
|
43 | 43 | = note: values in a scope are dropped in the opposite order they are created
|
44 | 44 |
|
45 | 45 | error[E0597]: `c1` does not live long enough
|
46 |
| - --> $DIR/dropck_vec_cycle_checked.rs:118:25 |
| 46 | + --> $DIR/dropck_vec_cycle_checked.rs:121:25 |
47 | 47 | |
|
48 | 48 | LL | c3.v[0].v.set(Some(&c1));
|
49 | 49 | | ^^ borrowed value does not live long enough
|
|
54 | 54 | = note: values in a scope are dropped in the opposite order they are created
|
55 | 55 |
|
56 | 56 | error[E0597]: `c2` does not live long enough
|
57 |
| - --> $DIR/dropck_vec_cycle_checked.rs:120:25 |
| 57 | + --> $DIR/dropck_vec_cycle_checked.rs:123:25 |
58 | 58 | |
|
59 | 59 | LL | c3.v[1].v.set(Some(&c2));
|
60 | 60 | | ^^ borrowed value does not live long enough
|
|
0 commit comments