]> git.proxmox.com Git - rustc.git/blame - src/test/ui/nll/closure-requirements/propagate-fail-to-approximate-longer-no-bounds.stderr
New upstream version 1.40.0+dfsg1
[rustc.git] / src / test / ui / nll / closure-requirements / propagate-fail-to-approximate-longer-no-bounds.stderr
CommitLineData
ff7c6d11 1note: No external requirements
0731742a 2 --> $DIR/propagate-fail-to-approximate-longer-no-bounds.rs:35:47
ff7c6d11 3 |
0531ce1d 4LL | establish_relationships(&cell_a, &cell_b, |_outlives, x, y| {
ff7c6d11 5 | _______________________________________________^
0531ce1d
XL
6LL | | // Only works if 'x: 'y:
7LL | | demand_y(x, y, x.get())
532ac7d7 8LL | |
0531ce1d 9LL | | });
ff7c6d11
XL
10 | |_____^
11 |
48663c56 12 = note: defining type: DefId(0:25 ~ propagate_fail_to_approximate_longer_no_bounds[317d]::supply[0]::{{closure}}[0]) with closure substs [
ff7c6d11 13 i16,
48663c56 14 for<'r, 's, 't0, 't1, 't2> extern "rust-call" fn((&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 'r)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) &'_#1r u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't0)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't1)) u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 't2)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0), 's)) u32>)),
ff7c6d11 15 ]
b7449926
XL
16 = note: late-bound region is '_#2r
17 = note: late-bound region is '_#3r
18
9fa01778 19error: lifetime may not live long enough
0731742a 20 --> $DIR/propagate-fail-to-approximate-longer-no-bounds.rs:37:9
b7449926
XL
21 |
22LL | establish_relationships(&cell_a, &cell_b, |_outlives, x, y| {
532ac7d7 23 | --------- - has type `&'_#7r std::cell::Cell<&'1 u32>`
b7449926 24 | |
532ac7d7 25 | has type `&'_#5r std::cell::Cell<&'2 &'_#1r u32>`
b7449926
XL
26LL | // Only works if 'x: 'y:
27LL | demand_y(x, y, x.get())
28 | ^^^^^^^^^^^^^^^^^^^^^^^ argument requires that `'1` must outlive `'2`
ff7c6d11
XL
29
30note: No external requirements
0731742a 31 --> $DIR/propagate-fail-to-approximate-longer-no-bounds.rs:34:1
ff7c6d11 32 |
0531ce1d
XL
33LL | / fn supply<'a, 'b>(cell_a: Cell<&'a u32>, cell_b: Cell<&'b u32>) {
34LL | | establish_relationships(&cell_a, &cell_b, |_outlives, x, y| {
35LL | | // Only works if 'x: 'y:
36LL | | demand_y(x, y, x.get())
532ac7d7 37LL | |
0531ce1d
XL
38LL | | });
39LL | | }
ff7c6d11
XL
40 | |_^
41 |
48663c56 42 = note: defining type: DefId(0:22 ~ propagate_fail_to_approximate_longer_no_bounds[317d]::supply[0]) with substs []
ff7c6d11
XL
43
44error: aborting due to previous error
45