about summary refs log tree commit diff
path: root/src/tools/rustfmt/tests/source/issue_5721.rs
blob: e5ae9612c9823687e196672f256ebfaae1093a69 (plain)
1
2
3
4
5
6
7
8
#![feature(non_lifetime_binders)]
#![allow(incomplete_features)]

trait Other<U: ?Sized> {}

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