summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/non_lifetime_binders/missing-assoc-item.rs
blob: 50f0152e904f4706c1874bd043d834b46a9c1549 (plain)
1
2
3
4
5
6
7
8
9
10
11
#![feature(non_lifetime_binders)]
//~^ WARN the feature `non_lifetime_binders` is incomplete

fn f()
where
    for<B> B::Item: Send,
    //~^ ERROR ambiguous associated type
{
}

fn main() {}