blob: b6cfcd98732b458d9b77c85c7ec4570b2fd93ee2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// 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() {}
|