mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
20 lines
675 B
Plaintext
20 lines
675 B
Plaintext
error[E0392]: parameter `'a` is never used
|
|
--> $DIR/variance-unused-region-param.rs:3:19
|
|
|
|
|
LL | struct SomeStruct<'a> { x: u32 }
|
|
| ^^ unused parameter
|
|
|
|
|
= help: consider removing `'a`, referring to it in a field, or using a marker such as `PhantomData`
|
|
|
|
error[E0392]: parameter `'a` is never used
|
|
--> $DIR/variance-unused-region-param.rs:4:15
|
|
|
|
|
LL | enum SomeEnum<'a> { Nothing }
|
|
| ^^ unused parameter
|
|
|
|
|
= help: consider removing `'a`, referring to it in a field, or using a marker such as `PhantomData`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0392`.
|