]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/closure-requirements/propagate-approximated-shorter-to-static-wrong-bound.stderr
Auto merge of #52046 - cramertj:fix-generator-mir, r=eddyb
[rust.git] / src / test / ui / nll / closure-requirements / propagate-approximated-shorter-to-static-wrong-bound.stderr
1 warning: not reporting region error due to nll
2   --> $DIR/propagate-approximated-shorter-to-static-wrong-bound.rs:51:9
3    |
4 LL |         demand_y(x, y, x.get())
5    |         ^^^^^^^^^^^^^^^^^^^^^^^
6
7 note: External requirements
8   --> $DIR/propagate-approximated-shorter-to-static-wrong-bound.rs:48:47
9    |
10 LL |       establish_relationships(&cell_a, &cell_b, |_outlives1, _outlives2, x, y| {
11    |  _______________________________________________^
12 LL | |         //~^ ERROR
13 LL | |         // Only works if 'x: 'y:
14 LL | |         demand_y(x, y, x.get())
15 LL | |         //~^ WARNING not reporting region error due to nll
16 LL | |     });
17    | |_____^
18    |
19    = note: defining type: DefId(0/1:18 ~ propagate_approximated_shorter_to_static_wrong_bound[317d]::supply[0]::{{closure}}[0]) with closure substs [
20                i16,
21                for<'r, 's, 't0, 't1, 't2, 't3> extern "rust-call" fn((&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0:0), 'r)) std::cell::Cell<&'_#1r &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0:0), 's)) u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0:0), 't0)) std::cell::Cell<&'_#2r &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0:0), 't1)) u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0:0), 't2)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0:0), 's)) u32>, &ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0:0), 't3)) std::cell::Cell<&ReLateBound(DebruijnIndex(0), BrNamed(crate0:DefIndex(0:0), 't1)) u32>))
22            ]
23    = note: number of external vids: 3
24    = note: where '_#1r: '_#0r
25
26 error: unsatisfied lifetime constraints
27   --> $DIR/propagate-approximated-shorter-to-static-wrong-bound.rs:48:5
28    |
29 LL | /     establish_relationships(&cell_a, &cell_b, |_outlives1, _outlives2, x, y| {
30 LL | |         //~^ ERROR
31 LL | |         // Only works if 'x: 'y:
32 LL | |         demand_y(x, y, x.get())
33 LL | |         //~^ WARNING not reporting region error due to nll
34 LL | |     });
35    | |______^ argument requires that `'a` must outlive `'static`
36
37 note: No external requirements
38   --> $DIR/propagate-approximated-shorter-to-static-wrong-bound.rs:47:1
39    |
40 LL | / fn supply<'a, 'b>(cell_a: Cell<&'a u32>, cell_b: Cell<&'b u32>) {
41 LL | |     establish_relationships(&cell_a, &cell_b, |_outlives1, _outlives2, x, y| {
42 LL | |         //~^ ERROR
43 LL | |         // Only works if 'x: 'y:
44 ...  |
45 LL | |     });
46 LL | | }
47    | |_^
48    |
49    = note: defining type: DefId(0/0:6 ~ propagate_approximated_shorter_to_static_wrong_bound[317d]::supply[0]) with substs []
50
51 error: aborting due to previous error
52