rust/src/test/ui/issues/issue-21140.rs
2019-07-03 06:30:28 +09:00

7 lines
134 B
Rust

// build-pass (FIXME(62277): could be check-pass?)
pub trait Trait where Self::Out: std::fmt::Display {
type Out;
}
fn main() {}