about summary refs log tree commit diff
path: root/tests/ui/issues/issue-21140.rs
blob: fbae052d0180e46721249e28c1d1bab9344cbdb7 (plain)
1
2
3
4
5
6
//@ check-pass
pub trait Trait where Self::Out: std::fmt::Display {
    type Out;
}

fn main() {}