]> git.lizzy.rs Git - rust.git/blob - src/test/ui/regions/region-multiple-lifetime-bounds-on-fns-where-clause.stderr
dda6129e195369e1848b738f139dc3032407865d
[rust.git] / src / test / ui / regions / region-multiple-lifetime-bounds-on-fns-where-clause.stderr
1 error[E0623]: lifetime mismatch
2   --> $DIR/region-multiple-lifetime-bounds-on-fns-where-clause.rs:9:10
3    |
4 LL | fn b<'a, 'b, 'c>(x: &mut &'a isize, y: &mut &'b isize, z: &mut &'c isize) {
5    |                          ---------          --------- these two types are declared with different lifetimes...
6 LL |     // Illegal now because there is no `'b:'a` declaration.
7 LL |     *x = *y;
8    |          ^^ ...but data from `y` flows into `x` here
9
10 error[E0623]: lifetime mismatch
11   --> $DIR/region-multiple-lifetime-bounds-on-fns-where-clause.rs:10:10
12    |
13 LL | fn b<'a, 'b, 'c>(x: &mut &'a isize, y: &mut &'b isize, z: &mut &'c isize) {
14    |                                             ---------          ---------
15    |                                             |
16    |                                             these two types are declared with different lifetimes...
17 ...
18 LL |     *z = *y;
19    |          ^^ ...but data from `y` flows into `z` here
20
21 error[E0623]: lifetime mismatch
22   --> $DIR/region-multiple-lifetime-bounds-on-fns-where-clause.rs:16:7
23    |
24 LL | fn c<'a,'b, 'c>(x: &mut &'a isize, y: &mut &'b isize, z: &mut &'c isize) {
25    |                         ---------          --------- these two types are declared with different lifetimes...
26 ...
27 LL |     a(x, y, z);
28    |       ^ ...but data from `y` flows into `x` here
29
30 error[E0308]: mismatched types
31   --> $DIR/region-multiple-lifetime-bounds-on-fns-where-clause.rs:22:56
32    |
33 LL |     let _: fn(&mut &isize, &mut &isize, &mut &isize) = a;
34    |            -----------------------------------------   ^ expected concrete lifetime, found bound lifetime parameter
35    |            |
36    |            expected due to this
37    |
38    = note: expected fn pointer `for<'r, 's, 't0, 't1, 't2, 't3> fn(&'r mut &'s isize, &'t0 mut &'t1 isize, &'t2 mut &'t3 isize)`
39                  found fn item `for<'r, 's, 't0> fn(&'r mut &isize, &'s mut &isize, &'t0 mut &isize) {a::<'_, '_, '_>}`
40
41 error: aborting due to 4 previous errors
42
43 Some errors have detailed explanations: E0308, E0623.
44 For more information about an error, try `rustc --explain E0308`.