]> git.proxmox.com Git - rustc.git/blob - src/test/ui/nll/closure-requirements/propagate-approximated-shorter-to-static-no-bound.stderr
New upstream version 1.26.0+dfsg1
[rustc.git] / src / test / ui / nll / closure-requirements / propagate-approximated-shorter-to-static-no-bound.stderr
1 warning: not reporting region error due to -Znll
2 --> $DIR/propagate-approximated-shorter-to-static-no-bound.rs:49:9
3 |
4 LL | demand_y(x, y, x.get()) //~ WARNING not reporting region error due to -Znll
5 | ^^^^^^^^^^^^^^^^^^^^^^^
6
7 note: External requirements
8 --> $DIR/propagate-approximated-shorter-to-static-no-bound.rs:45:47
9 |
10 LL | establish_relationships(&cell_a, &cell_b, |_outlives, x, y| {
11 | _______________________________________________^
12 LL | | //~^ ERROR does not outlive free region
13 LL | |
14 LL | | // Only works if 'x: 'y:
15 LL | | demand_y(x, y, x.get()) //~ WARNING not reporting region error due to -Znll
16 LL | | });
17 | |_____^
18 |
19 = note: defining type: DefId(0/1:18 ~ propagate_approximated_shorter_to_static_no_bound[317d]::supply[0]::{{closure}}[0]) with closure substs [
20 i16,
21 for<'r, 's, 't0, 't1, 't2> extern "rust-call" fn((&ReLateBound(DebruijnIndex { depth: 1 }, BrNamed(crate0:DefIndex(0:0), 'r)) std::cell::Cell<&'_#1r &ReLateBound(DebruijnIndex { depth: 1 }, BrNamed(crate0:DefIndex(0:0), 's)) u32>, &ReLateBound(DebruijnIndex { depth: 1 }, BrNamed(crate0:DefIndex(0:0), 't0)) std::cell::Cell<&ReLateBound(DebruijnIndex { depth: 1 }, BrNamed(crate0:DefIndex(0:0), 's)) u32>, &ReLateBound(DebruijnIndex { depth: 1 }, BrNamed(crate0:DefIndex(0:0), 't1)) std::cell::Cell<&ReLateBound(DebruijnIndex { depth: 1 }, BrNamed(crate0:DefIndex(0:0), 't2)) u32>))
22 ]
23 = note: number of external vids: 2
24 = note: where '_#1r: '_#0r
25
26 error: free region `ReFree(DefId(0/0:6 ~ propagate_approximated_shorter_to_static_no_bound[317d]::supply[0]), BrNamed(crate0:DefIndex(1:16), 'a))` does not outlive free region `ReStatic`
27 --> $DIR/propagate-approximated-shorter-to-static-no-bound.rs:45:47
28 |
29 LL | establish_relationships(&cell_a, &cell_b, |_outlives, x, y| {
30 | _______________________________________________^
31 LL | | //~^ ERROR does not outlive free region
32 LL | |
33 LL | | // Only works if 'x: 'y:
34 LL | | demand_y(x, y, x.get()) //~ WARNING not reporting region error due to -Znll
35 LL | | });
36 | |_____^
37
38 note: No external requirements
39 --> $DIR/propagate-approximated-shorter-to-static-no-bound.rs:44:1
40 |
41 LL | / fn supply<'a, 'b>(cell_a: Cell<&'a u32>, cell_b: Cell<&'b u32>) {
42 LL | | establish_relationships(&cell_a, &cell_b, |_outlives, x, y| {
43 LL | | //~^ ERROR does not outlive free region
44 LL | |
45 ... |
46 LL | | });
47 LL | | }
48 | |_^
49 |
50 = note: defining type: DefId(0/0:6 ~ propagate_approximated_shorter_to_static_no_bound[317d]::supply[0]) with substs []
51
52 error: aborting due to previous error
53