blob: 7d328384a7455d3911dd8d67eadddc8a9b240bbf [file] [log] [blame]
//@ known-bug: #121637
#![feature(non_lifetime_binders)]
trait Trait<Type> {
type Type;
fn method(&self) -> impl for<T> Trait<impl Trait<T>>;
}