2018-01-26 17:41:59 -08:00
|
|
|
error[E0195]: lifetime parameters or bounds on method `no_bound` do not match the trait declaration
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/regions-bound-missing-bound-in-impl.rs:19:16
|
2018-01-26 17:41:59 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | fn no_bound<'b>(self, b: Inv<'b>);
|
2018-06-27 15:25:18 -07:00
|
|
|
| ---- lifetimes in impl do not match this method in trait
|
2018-01-28 13:42:49 -08:00
|
|
|
...
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | fn no_bound<'b:'a>(self, b: Inv<'b>) {
|
2018-06-27 15:25:18 -07:00
|
|
|
| ^^^^^^^ lifetimes do not match method in trait
|
2018-01-26 17:41:59 -08:00
|
|
|
|
|
|
|
error[E0195]: lifetime parameters or bounds on method `has_bound` do not match the trait declaration
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/regions-bound-missing-bound-in-impl.rs:23:17
|
2018-01-26 17:41:59 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | fn has_bound<'b:'a>(self, b: Inv<'b>);
|
2018-06-27 15:25:18 -07:00
|
|
|
| ------- lifetimes in impl do not match this method in trait
|
2018-01-28 13:42:49 -08:00
|
|
|
...
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | fn has_bound<'b>(self, b: Inv<'b>) {
|
2018-06-27 15:25:18 -07:00
|
|
|
| ^^^^ lifetimes do not match method in trait
|
2018-01-26 17:41:59 -08:00
|
|
|
|
|
|
|
error[E0308]: method not compatible with trait
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/regions-bound-missing-bound-in-impl.rs:27:5
|
2018-01-26 17:41:59 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | fn wrong_bound1<'b,'c,'d:'a+'c>(self, b: Inv<'b>, c: Inv<'c>, d: Inv<'d>) {
|
2018-01-28 13:42:49 -08:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ lifetime mismatch
|
2018-01-26 17:41:59 -08:00
|
|
|
|
|
2022-12-24 23:17:25 +00:00
|
|
|
= note: expected signature `fn(&'a isize, Inv<'c>, Inv<'c>, Inv<'_>)`
|
|
|
|
found signature `fn(&'a isize, Inv<'_>, Inv<'c>, Inv<'_>)`
|
2021-10-05 12:11:51 +00:00
|
|
|
note: the lifetime `'c` as defined here...
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/regions-bound-missing-bound-in-impl.rs:27:24
|
2018-06-27 16:27:47 -07:00
|
|
|
|
|
|
|
|
LL | fn wrong_bound1<'b,'c,'d:'a+'c>(self, b: Inv<'b>, c: Inv<'c>, d: Inv<'d>) {
|
|
|
|
| ^^
|
2021-10-05 12:11:51 +00:00
|
|
|
note: ...does not necessarily outlive the lifetime `'c` as defined here
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/regions-bound-missing-bound-in-impl.rs:27:24
|
2018-06-27 16:27:47 -07:00
|
|
|
|
|
|
|
|
LL | fn wrong_bound1<'b,'c,'d:'a+'c>(self, b: Inv<'b>, c: Inv<'c>, d: Inv<'d>) {
|
|
|
|
| ^^
|
2018-01-26 17:41:59 -08:00
|
|
|
|
2020-01-08 20:02:10 +03:00
|
|
|
error[E0308]: method not compatible with trait
|
|
|
|
--> $DIR/regions-bound-missing-bound-in-impl.rs:27:5
|
|
|
|
|
|
|
|
|
LL | fn wrong_bound1<'b,'c,'d:'a+'c>(self, b: Inv<'b>, c: Inv<'c>, d: Inv<'d>) {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ lifetime mismatch
|
|
|
|
|
|
2022-12-24 23:17:25 +00:00
|
|
|
= note: expected signature `fn(&'a isize, Inv<'c>, Inv<'c>, Inv<'_>)`
|
|
|
|
found signature `fn(&'a isize, Inv<'_>, Inv<'c>, Inv<'_>)`
|
2021-10-05 12:11:51 +00:00
|
|
|
note: the lifetime `'c` as defined here...
|
2020-01-08 20:02:10 +03:00
|
|
|
--> $DIR/regions-bound-missing-bound-in-impl.rs:27:24
|
|
|
|
|
|
|
|
|
LL | fn wrong_bound1<'b,'c,'d:'a+'c>(self, b: Inv<'b>, c: Inv<'c>, d: Inv<'d>) {
|
|
|
|
| ^^
|
2021-10-05 12:11:51 +00:00
|
|
|
note: ...does not necessarily outlive the lifetime `'c` as defined here
|
2020-01-08 20:02:10 +03:00
|
|
|
--> $DIR/regions-bound-missing-bound-in-impl.rs:27:24
|
|
|
|
|
|
|
|
|
LL | fn wrong_bound1<'b,'c,'d:'a+'c>(self, b: Inv<'b>, c: Inv<'c>, d: Inv<'d>) {
|
|
|
|
| ^^
|
|
|
|
|
2018-06-27 15:25:18 -07:00
|
|
|
error[E0195]: lifetime parameters or bounds on method `wrong_bound2` do not match the trait declaration
|
2020-01-08 20:02:10 +03:00
|
|
|
--> $DIR/regions-bound-missing-bound-in-impl.rs:42:20
|
2018-06-27 15:25:18 -07:00
|
|
|
|
|
|
|
|
LL | fn wrong_bound2<'b,'c,'d:'a+'b>(self, b: Inv<'b>, c: Inv<'c>, d: Inv<'d>);
|
|
|
|
| ---------------- lifetimes in impl do not match this method in trait
|
|
|
|
...
|
|
|
|
LL | fn wrong_bound2(self, b: Inv, c: Inv, d: Inv) {
|
2019-05-31 22:19:30 -07:00
|
|
|
| ^ lifetimes do not match method in trait
|
2018-06-27 15:25:18 -07:00
|
|
|
|
2018-01-26 17:41:59 -08:00
|
|
|
error[E0276]: impl has stricter requirements than trait
|
2021-10-06 12:27:42 +00:00
|
|
|
--> $DIR/regions-bound-missing-bound-in-impl.rs:49:26
|
2018-01-26 17:41:59 -08:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | fn another_bound<'x: 'a>(self, x: Inv<'x>, y: Inv<'t>);
|
2018-01-26 17:41:59 -08:00
|
|
|
| ------------------------------------------------------- definition of `another_bound` from trait
|
|
|
|
...
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | fn another_bound<'x: 't>(self, x: Inv<'x>, y: Inv<'t>) {
|
2021-10-06 12:27:42 +00:00
|
|
|
| ^^ impl has extra requirement `'x: 't`
|
2018-01-26 17:41:59 -08:00
|
|
|
|
2020-01-08 20:02:10 +03:00
|
|
|
error: aborting due to 6 previous errors
|
2018-01-26 17:41:59 -08:00
|
|
|
|
2019-04-17 13:26:38 -04:00
|
|
|
Some errors have detailed explanations: E0195, E0276, E0308.
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about an error, try `rustc --explain E0195`.
|