summaryrefslogtreecommitdiffstats
path: root/tests/ui/associated-type-bounds/binder-on-bound.rs
blob: 6cba45129e49b1951e1b6c195d5acbe17dd01269 (plain)
1
2
3
4
5
6
7
8
9
trait Trait {
    type Bound<'a>;
}

fn foo() where Trait<for<'a> Bound<'a> = &'a ()> {
    //~^ ERROR `for<...>` is not allowed on associated type bounds
}

fn main() {}