blob: 04e084919d4f2cfcf739a3fe26347de34c97194b [file] [edit]
//@ known-bug: #150545
#![feature(non_lifetime_binders)]
trait Foo: for<T> Bar<T> {
type Item;
fn next(self) -> Self::Item;
}
trait Bar<T> {}
fn main() {}