rust/tests/ui/nll/closure-requirements/propagate-approximated-shorter-to-static-no-bound.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
2.5 KiB
Plaintext
Raw Normal View History

2020-01-10 14:13:05 +00:00
note: external requirements
2018-12-25 08:56:47 -07:00
--> $DIR/propagate-approximated-shorter-to-static-no-bound.rs:32:47
|
LL | establish_relationships(&cell_a, &cell_b, |_outlives, x, y| {
| ^^^^^^^^^^^^^^^^^
|
= note: defining type: supply::{closure#0} with closure args [
i16,
2023-04-22 00:08:38 +00:00
for<Region(BrAnon(None)), Region(BrAnon(None)), Region(BrAnon(None)), Region(BrAnon(None)), Region(BrAnon(None))> extern "rust-call" fn((&ReLateBound(DebruijnIndex(0), BoundRegion { var: 0, kind: BrAnon(None) }) std::cell::Cell<&'?1 &ReLateBound(DebruijnIndex(0), BoundRegion { var: 1, kind: BrAnon(None) }) u32>, &ReLateBound(DebruijnIndex(0), BoundRegion { var: 2, kind: BrAnon(None) }) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BoundRegion { var: 1, kind: BrAnon(None) }) u32>, &ReLateBound(DebruijnIndex(0), BoundRegion { var: 3, kind: BrAnon(None) }) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BoundRegion { var: 4, kind: BrAnon(None) }) u32>)),
(),
]
2023-04-22 00:08:38 +00:00
= note: late-bound region is '?2
= note: late-bound region is '?3
2018-07-27 22:46:16 +01:00
= note: number of external vids: 4
2023-04-22 00:08:38 +00:00
= note: where '?1: '?0
2020-01-10 14:13:05 +00:00
note: no external requirements
2018-12-25 08:56:47 -07:00
--> $DIR/propagate-approximated-shorter-to-static-no-bound.rs:31:1
|
LL | fn supply<'a, 'b>(cell_a: Cell<&'a u32>, cell_b: Cell<&'b u32>) {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: defining type: supply
error[E0521]: borrowed data escapes outside of function
2018-12-25 08:56:47 -07:00
--> $DIR/propagate-approximated-shorter-to-static-no-bound.rs:32:5
|
LL | fn supply<'a, 'b>(cell_a: Cell<&'a u32>, cell_b: Cell<&'b u32>) {
| -- ------ `cell_a` is a reference that is only valid in the function body
| |
| lifetime `'a` defined here
LL | / establish_relationships(&cell_a, &cell_b, |_outlives, x, y| {
2019-03-09 15:03:44 +03:00
LL | |
LL | |
LL | | // Only works if 'x: 'y:
2018-08-31 19:27:11 +02:00
LL | | demand_y(x, y, x.get())
LL | | });
| | ^
| | |
| |______`cell_a` escapes the function body here
| argument requires that `'a` must outlive `'static`
|
2023-04-22 00:08:38 +00:00
= note: requirement occurs because of the type `Cell<&'?9 u32>`, which makes the generic argument `&'?9 u32` invariant
2022-04-02 15:32:39 -07:00
= note: the struct `Cell<T>` is invariant over the parameter `T`
= help: see <https://doc.rust-lang.org/nomicon/subtyping.html> for more information about variance
error: aborting due to previous error
2021-02-01 18:23:12 +01:00
For more information about this error, try `rustc --explain E0521`.