7 lines
109 B
Rust
7 lines
109 B
Rust
// check-pass
|
|
pub trait Trait<const N: usize>: From<<Self as Trait<N>>::Item> {
|
|
type Item;
|
|
}
|
|
|
|
fn main() {}
|