2017-12-03 06:16:52 -05:00
|
|
|
note: No external requirements
|
2017-12-07 05:20:12 -05:00
|
|
|
--> $DIR/propagate-approximated-shorter-to-static-comparing-against-free.rs:31:15
|
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | foo(cell, |cell_a, cell_x| {
|
2017-12-07 05:20:12 -05:00
|
|
|
| _______________^
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | | cell_a.set(cell_x.get()); // forces 'x: 'a, error in closure
|
2018-07-03 11:38:09 -04:00
|
|
|
LL | | //~^ ERROR
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | | })
|
2017-12-07 05:20:12 -05:00
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
= note: defining type: DefId(0/1:12 ~ propagate_approximated_shorter_to_static_comparing_against_free[317d]::case1[0]::{{closure}}[0]) with closure substs [
|
|
|
|
i32,
|
2018-06-10 15:29:43 +02:00
|
|
|
for<'r> extern "rust-call" fn((std::cell::Cell<&'_#1r u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0:0), 'r)) u32>))
|
2017-12-07 05:20:12 -05:00
|
|
|
]
|
|
|
|
|
2018-10-14 14:53:10 +01:00
|
|
|
error[E0521]: borrowed data escapes outside of closure
|
2018-08-31 19:27:11 +02:00
|
|
|
--> $DIR/propagate-approximated-shorter-to-static-comparing-against-free.rs:32:9
|
2018-07-31 14:35:43 +02:00
|
|
|
|
|
|
|
|
LL | foo(cell, |cell_a, cell_x| {
|
|
|
|
| ------ ------ `cell_x` is a reference that is only valid in the closure body
|
|
|
|
| |
|
|
|
|
| `cell_a` is declared here, outside of the closure body
|
|
|
|
LL | cell_a.set(cell_x.get()); // forces 'x: 'a, error in closure
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ `cell_x` escapes the closure body here
|
|
|
|
|
2017-12-07 05:20:12 -05:00
|
|
|
note: No external requirements
|
|
|
|
--> $DIR/propagate-approximated-shorter-to-static-comparing-against-free.rs:28:1
|
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | / fn case1() {
|
|
|
|
LL | | let a = 0;
|
|
|
|
LL | | let cell = Cell::new(&a);
|
|
|
|
LL | | foo(cell, |cell_a, cell_x| {
|
2017-12-07 05:20:12 -05:00
|
|
|
... |
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | | })
|
|
|
|
LL | | }
|
2017-12-07 05:20:12 -05:00
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
= note: defining type: DefId(0/0:5 ~ propagate_approximated_shorter_to_static_comparing_against_free[317d]::case1[0]) with substs []
|
|
|
|
|
|
|
|
note: External requirements
|
2018-08-31 19:27:11 +02:00
|
|
|
--> $DIR/propagate-approximated-shorter-to-static-comparing-against-free.rs:45:15
|
2017-12-07 05:20:12 -05:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | foo(cell, |cell_a, cell_x| {
|
2017-12-07 05:20:12 -05:00
|
|
|
| _______________^
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | | cell_x.set(cell_a.get()); // forces 'a: 'x, implies 'a = 'static -> borrow error
|
|
|
|
LL | | })
|
2017-12-07 05:20:12 -05:00
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
= note: defining type: DefId(0/1:13 ~ propagate_approximated_shorter_to_static_comparing_against_free[317d]::case2[0]::{{closure}}[0]) with closure substs [
|
|
|
|
i32,
|
2018-06-10 15:29:43 +02:00
|
|
|
for<'r> extern "rust-call" fn((std::cell::Cell<&'_#1r u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0:0), 'r)) u32>))
|
2017-12-07 05:20:12 -05:00
|
|
|
]
|
|
|
|
= note: number of external vids: 2
|
|
|
|
= note: where '_#1r: '_#0r
|
|
|
|
|
|
|
|
note: No external requirements
|
2018-08-31 19:27:11 +02:00
|
|
|
--> $DIR/propagate-approximated-shorter-to-static-comparing-against-free.rs:38:1
|
2017-12-07 05:20:12 -05:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | / fn case2() {
|
|
|
|
LL | | let a = 0;
|
|
|
|
LL | | let cell = Cell::new(&a);
|
|
|
|
LL | | //~^ ERROR `a` does not live long enough
|
2017-12-07 05:20:12 -05:00
|
|
|
... |
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | | })
|
|
|
|
LL | | }
|
2017-12-07 05:20:12 -05:00
|
|
|
| |_^
|
|
|
|
|
|
|
|
|
= note: defining type: DefId(0/0:6 ~ propagate_approximated_shorter_to_static_comparing_against_free[317d]::case2[0]) with substs []
|
|
|
|
|
2017-12-07 06:25:59 -05:00
|
|
|
error[E0597]: `a` does not live long enough
|
2018-08-31 19:27:11 +02:00
|
|
|
--> $DIR/propagate-approximated-shorter-to-static-comparing-against-free.rs:40:26
|
2017-12-07 06:25:59 -05:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let cell = Cell::new(&a);
|
2017-12-14 09:57:34 -08:00
|
|
|
| ^^ borrowed value does not live long enough
|
2017-12-07 06:25:59 -05:00
|
|
|
...
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | }
|
2018-07-22 16:02:31 +01:00
|
|
|
| - `a` dropped here while still borrowed
|
2018-03-05 16:12:19 -03:00
|
|
|
|
|
|
|
|
= note: borrowed value must be valid for the static lifetime...
|
2017-12-07 06:25:59 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2017-12-07 05:20:12 -05:00
|
|
|
|
2018-10-14 14:53:10 +01:00
|
|
|
Some errors occurred: E0521, E0597.
|
|
|
|
For more information about an error, try `rustc --explain E0521`.
|