mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-07 09:13:07 +03:00
10 lines
134 B
Rust
10 lines
134 B
Rust
//@ check-pass
|
|
|
|
pub struct Tuple;
|
|
|
|
pub trait Trait<const I: usize> {
|
|
type Input: From<<Self as Trait<I>>::Input>;
|
|
}
|
|
|
|
fn main() {}
|