6 lines
99 B
Rust
6 lines
99 B
Rust
// compile-pass
|
|
pub trait Trait where Self::Out: std::fmt::Display {
|
|
type Out;
|
|
}
|
|
|
|
fn main() {}
|