rust/tests/target/issue_5721.rs
2023-07-19 22:18:51 -05:00

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>,
{
}