summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue_5721.rs
blob: d073b09cac2bed5e38c22983bce3a040e64af1e2 (plain)
1
2
3
4
5
6
7
8
9
10
#![feature(non_lifetime_binders)]
#![allow(incomplete_features)]

trait Other<U: ?Sized> {}

trait Trait<U>
where
    for<T> U: Other<T>,
{
}