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

fn main() {}