2022-05-21 12:42:16 -05:00
|
|
|
// revisions: base nll
|
|
|
|
// ignore-compare-mode-nll
|
|
|
|
//[nll] compile-flags: -Z borrowck=mir
|
|
|
|
|
2018-09-21 18:26:24 -05:00
|
|
|
// Test that if we need to prove that `<T as MyTrait<'a>>::Output:
|
|
|
|
// 'a`, but we only know that `<T as MyTrait<'b>>::Output: 'a`, that
|
|
|
|
// doesn't suffice.
|
|
|
|
|
|
|
|
trait MyTrait<'a> {
|
|
|
|
type Output;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn foo1<'a, 'b, T>() -> &'a ()
|
|
|
|
where
|
|
|
|
for<'x> T: MyTrait<'x>,
|
|
|
|
<T as MyTrait<'b>>::Output: 'a,
|
|
|
|
{
|
2018-09-25 10:32:58 -05:00
|
|
|
bar::<<T as MyTrait<'a>>::Output>()
|
2022-05-21 12:42:16 -05:00
|
|
|
//[base]~^ ERROR the associated type `<T as MyTrait<'a>>::Output` may not live long enough
|
|
|
|
//[nll]~^^ ERROR the associated type `<T as MyTrait<'_>>::Output` may not live long enough
|
2018-09-21 18:26:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn bar<'a, T>() -> &'a ()
|
|
|
|
where
|
|
|
|
T: 'a,
|
|
|
|
{
|
|
|
|
&()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|