summaryrefslogtreecommitdiffstats
path: root/tests/ui/generic-associated-types/auxiliary/missing-item-sugg.rs
blob: 5b10aab4b3f8df974e497bbcd19e33e141d4c019 (plain)
1
2
3
4
5
pub trait Foo {
    type Gat<T>
    where
        T: std::fmt::Display;
}