rust/src/test/ui/nll/ty-outlives/projection-where-clause-env-wrong-lifetime.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
692 B
Rust
Raw Normal View History

2022-05-21 12:42:16 -05:00
// revisions: base nll
// ignore-compare-mode-nll
//[nll] compile-flags: -Z borrowck=mir
// 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
}
fn bar<'a, T>() -> &'a ()
where
T: 'a,
{
&()
}
fn main() {}