about summary refs log tree commit diff
path: root/tests/ui/typeck/issue-110052.rs
blob: acbfac30acb3cf03e3449f2b55d68339eb9f8565 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Makes sure we deal with escaping lifetimes *above* INNERMOST when
// suggesting trait for ambiguous associated type.

impl<I> Validator<I> for ()
where
    for<'iter> dyn Validator<<&'iter I>::Item>:,
    //~^ ERROR ambiguous associated type
{}

pub trait Validator<T> {}

fn main() {}