rust/tests/ui/issues/issue-21140.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
97 B
Rust
Raw Normal View History

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