rust/src/test/ui/variance/variance-regions-unused-indirect.stderr

20 lines
662 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0392]: parameter `'a` is never used
2018-12-25 09:56:47 -06:00
--> $DIR/variance-regions-unused-indirect.rs:3:10
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | enum Foo<'a> {
2019-04-17 16:41:34 -05:00
| ^^ unused parameter
2018-08-08 07:28:26 -05:00
|
2019-10-03 08:21:15 -05:00
= help: consider removing `'a`, referring to it in a field, or using a marker such as `std::marker::PhantomData`
2018-08-08 07:28:26 -05:00
error[E0392]: parameter `'a` is never used
2018-12-25 09:56:47 -06:00
--> $DIR/variance-regions-unused-indirect.rs:7:10
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | enum Bar<'a> {
2019-04-17 16:41:34 -05:00
| ^^ unused parameter
2018-08-08 07:28:26 -05:00
|
2019-10-03 08:21:15 -05:00
= help: consider removing `'a`, referring to it in a field, or using a marker such as `std::marker::PhantomData`
2018-08-08 07:28:26 -05:00
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0392`.