rust/tests/target/issue_5721.rs

11 lines
142 B
Rust
Raw Normal View History

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