os-rust/tests/ui/variance/variance-regions-unused-direct.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
701 B
Text
Raw Normal View History

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>;
| ^^ unused lifetime parameter
2018-08-08 14:28:26 +02: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
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> {
| ^^ unused lifetime parameter
2018-08-08 14:28:26 +02: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`.