blob: d073b09cac2bed5e38c22983bce3a040e64af1e2 [file] [log] [blame]
#![feature(non_lifetime_binders)]
#![allow(incomplete_features)]
trait Other<U: ?Sized> {}
trait Trait<U>
where
for<T> U: Other<T>,
{
}