blob: 3fdfb673b3700ada395eb097e304dbd01dbdea70 [file] [log] [blame]
error[E0491]: in type `&'a variant_struct_region::Foo<'b>`, reference has a longer lifetime than the data it references
--> $DIR/regions-outlives-nominal-type-region.rs:27:9
|
LL | type Out = &'a Foo<'b>; //~ ERROR reference has a longer lifetime
| ^^^^^^^^^^^^^^^^^^^^^^^
|
note: the pointer is valid for the lifetime 'a as defined on the impl at 26:10
--> $DIR/regions-outlives-nominal-type-region.rs:26:10
|
LL | impl<'a, 'b> Trait<'a, 'b> for usize {
| ^^
note: but the referenced data is only valid for the lifetime 'b as defined on the impl at 26:14
--> $DIR/regions-outlives-nominal-type-region.rs:26:14
|
LL | impl<'a, 'b> Trait<'a, 'b> for usize {
| ^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0491`.