blob: 6d02cb3c7148e34fe11286f2dccdc593a305e52e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
error[E0392]: lifetime parameter `'a` is never used
--> $DIR/dedup.rs:6:12
|
LL | struct Foo<'a>;
| ^^ unused lifetime parameter
|
= help: consider removing `'a`, referring to it in a field, or using a marker such as `PhantomData`
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0392`.
|