2024-02-01 15:58:07 +01:00
|
|
|
error[E0392]: lifetime parameter `'a` is never used
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/variance-regions-unused-direct.rs:5:18
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | struct Bivariant<'a>;
|
2024-02-01 15:58:07 +01:00
|
|
|
| ^^ unused lifetime parameter
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
= help: consider removing `'a`, referring to it in a field, or using a marker such as `PhantomData`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2024-02-01 15:58:07 +01:00
|
|
|
error[E0392]: lifetime parameter `'d` is never used
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/variance-regions-unused-direct.rs:7:19
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | struct Struct<'a, 'd> {
|
2024-02-01 15:58:07 +01:00
|
|
|
| ^^ unused lifetime parameter
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
= help: consider removing `'d`, referring to it in a field, or using a marker such as `PhantomData`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0392`.
|