rust/src/test/ui/issues/issue-21140.rs
2018-12-25 21:08:33 -07:00

6 lines
99 B
Rust

// compile-pass
pub trait Trait where Self::Out: std::fmt::Display {
type Out;
}
fn main() {}