blob: b6cfcd98732b458d9b77c85c7ec4570b2fd93ee2 [file] [log] [blame]
// 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
fn main() {}