11 lines
142 B
Rust
11 lines
142 B
Rust
#![feature(non_lifetime_binders)]
|
|
#![allow(incomplete_features)]
|
|
|
|
trait Other<U: ?Sized> {}
|
|
|
|
trait Trait<U>
|
|
where
|
|
for<T> U: Other<T>,
|
|
{
|
|
}
|