mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 01:34:21 +00:00
96d24f2dd1
This reverts commit65cd843ae0
, reversing changes made tod255c6a57c
.
54 lines
1.2 KiB
Plaintext
54 lines
1.2 KiB
Plaintext
error[E0392]: lifetime parameter `'a` is never used
|
|
--> $DIR/variance-regions-direct.rs:52:14
|
|
|
|
|
LL | struct Test7<'a> {
|
|
| ^^ unused lifetime parameter
|
|
|
|
|
= help: consider removing `'a`, referring to it in a field, or using a marker such as `PhantomData`
|
|
|
|
error: [+, +, +]
|
|
--> $DIR/variance-regions-direct.rs:9:1
|
|
|
|
|
LL | struct Test2<'a, 'b, 'c> {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: [-, -, -]
|
|
--> $DIR/variance-regions-direct.rs:18:1
|
|
|
|
|
LL | struct Test3<'a, 'b, 'c> {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: [+, o]
|
|
--> $DIR/variance-regions-direct.rs:27:1
|
|
|
|
|
LL | struct Test4<'a, 'b:'a> {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: [-, o]
|
|
--> $DIR/variance-regions-direct.rs:35:1
|
|
|
|
|
LL | struct Test5<'a, 'b:'a> {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: [+, o]
|
|
--> $DIR/variance-regions-direct.rs:45:1
|
|
|
|
|
LL | struct Test6<'a, 'b:'a> {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: [*]
|
|
--> $DIR/variance-regions-direct.rs:52:1
|
|
|
|
|
LL | struct Test7<'a> {
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
error: [-, +, o]
|
|
--> $DIR/variance-regions-direct.rs:60:1
|
|
|
|
|
LL | enum Test8<'a, 'b, 'c:'b> {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 8 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0392`.
|