rust/tests/ui/nll/closure-requirements/propagate-approximated-fail-no-postdom.stderr

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

37 lines
1.8 KiB
Plaintext
Raw Normal View History

2020-01-10 08:13:05 -06:00
note: no external requirements
2018-12-25 09:56:47 -06:00
--> $DIR/propagate-approximated-fail-no-postdom.rs:43:9
|
LL | |_outlives1, _outlives2, _outlives3, x, y| {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: defining type: supply::{closure#0} with closure substs [
i16,
2023-04-21 19:08:38 -05:00
for<Region(BrAnon(None)), Region(BrAnon(None))> extern "rust-call" fn((std::cell::Cell<&'?1 &ReLateBound(DebruijnIndex(0), BoundRegion { var: 0, kind: BrAnon(None) }) u32>, std::cell::Cell<&'?2 &ReLateBound(DebruijnIndex(0), BoundRegion { var: 0, kind: BrAnon(None) }) u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BoundRegion { var: 1, kind: BrAnon(None) }) &'?3 u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BoundRegion { var: 0, kind: BrAnon(None) }) u32>, std::cell::Cell<&ReLateBound(DebruijnIndex(0), BoundRegion { var: 1, kind: BrAnon(None) }) u32>)),
(),
]
2023-04-21 19:08:38 -05:00
= note: late-bound region is '?4
= note: late-bound region is '?5
= note: late-bound region is '?6
2018-12-11 15:49:40 -06:00
error: lifetime may not live long enough
2018-12-25 09:56:47 -06:00
--> $DIR/propagate-approximated-fail-no-postdom.rs:46:13
|
LL | |_outlives1, _outlives2, _outlives3, x, y| {
2023-04-21 19:08:38 -05:00
| ---------- ---------- has type `Cell<&'2 &'?3 u32>`
| |
2023-04-21 19:08:38 -05:00
| has type `Cell<&'?1 &'1 u32>`
...
2019-03-09 06:03:44 -06:00
LL | demand_y(x, y, p)
| ^^^^^^^^^^^^^^^^^ argument requires that `'1` must outlive `'2`
2020-01-10 08:13:05 -06:00
note: no external requirements
2018-12-25 09:56:47 -06:00
--> $DIR/propagate-approximated-fail-no-postdom.rs:38:1
|
LL | fn supply<'a, 'b, 'c>(cell_a: Cell<&'a u32>, cell_b: Cell<&'b u32>, cell_c: Cell<&'c u32>) {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: defining type: supply
error: aborting due to previous error