rust/tests/ui/generic-associated-types/auxiliary/missing-item-sugg.rs

6 lines
74 B
Rust

pub trait Foo {
type Gat<T>
where
T: std::fmt::Display;
}