rust/tests/ui/traits/non_lifetime_binders/missing-assoc-item.rs

12 lines
192 B
Rust

#![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() {}