blob: e7744b53f75c735c710453215da3969185ab2253 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Check that we error when a bound from the impl is not satisfied when
// normalizing an associated type.
trait Visitor<'d> {
type Value;
}
impl<'a, 'd: 'a> Visitor<'d> for &'a () {
type Value = ();
}
fn visit_seq<'d, 'a: 'd>() -> <&'a () as Visitor<'d>>::Value {}
//~^ ERROR lifetime may not live long enough
//~| ERROR cannot infer
fn main() {}
|