blob: 5d7ef6e8ce991d08091b6cbda34fab2e553b9669 [file] [log] [blame]
//@ known-bug: #121422
#![feature(non_lifetime_binders)]
trait Trait<T: ?Sized> {}
fn produce() -> impl for<T> Trait<(), Assoc = impl Trait<T>> {
16
}