rust/tests/source/issue_5721.rs
2023-10-22 20:21:44 -05:00

8 lines
141 B
Rust

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