pacify the mercilous tidy.
This commit is contained in:
parent
ffe87f63ea
commit
e2deef32d4
3 changed files with 15 additions and 3 deletions
|
|
@ -0,0 +1,11 @@
|
|||
error[E0309]: the associated type `<T as MyTrait<'_>>::Output` may not live long enough
|
||||
--> $DIR/projection-where-clause-env-wrong-lifetime.rs:14:5
|
||||
|
|
||||
LL | bar::<<T as MyTrait<'a>>::Output>()
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
|
||||
= help: consider adding an explicit lifetime bound `<T as MyTrait<'_>>::Output: 'a`...
|
||||
|
||||
error: aborting due to previous error
|
||||
|
||||
For more information about this error, try `rustc --explain E0309`.
|
||||
|
|
@ -11,7 +11,8 @@ where
|
|||
for<'x> T: MyTrait<'x>,
|
||||
<T as MyTrait<'b>>::Output: 'a,
|
||||
{
|
||||
bar::<<T as MyTrait<'a>>::Output>() //~ ERROR the associated type `<T as MyTrait<'a>>::Output` may not live long enough
|
||||
bar::<<T as MyTrait<'a>>::Output>()
|
||||
//~^ ERROR the associated type `<T as MyTrait<'a>>::Output` may not live long enough
|
||||
}
|
||||
|
||||
fn bar<'a, T>() -> &'a ()
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
error[E0309]: the associated type `<T as MyTrait<'a>>::Output` may not live long enough
|
||||
--> $DIR/projection-where-clause-env-wrong-lifetime.rs:14:5
|
||||
|
|
||||
LL | bar::<<T as MyTrait<'a>>::Output>() //~ ERROR the associated type `<T as MyTrait<'a>>::Output` may not live long enough
|
||||
LL | bar::<<T as MyTrait<'a>>::Output>()
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
|
||||
= help: consider adding an explicit lifetime bound `<T as MyTrait<'a>>::Output: 'a`...
|
||||
note: ...so that the type `<T as MyTrait<'a>>::Output` will meet its required lifetime bounds
|
||||
--> $DIR/projection-where-clause-env-wrong-lifetime.rs:14:5
|
||||
|
|
||||
LL | bar::<<T as MyTrait<'a>>::Output>() //~ ERROR the associated type `<T as MyTrait<'a>>::Output` may not live long enough
|
||||
LL | bar::<<T as MyTrait<'a>>::Output>()
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
error: aborting due to previous error
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue