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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
192 B
Rust
Raw Permalink Normal View History

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