mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
30 lines
444 B
Rust
30 lines
444 B
Rust
// run-pass
|
|
|
|
use std::marker::PhantomData;
|
|
|
|
fn main() {
|
|
let _arr = [1; <Multiply<Five, Five>>::VAL];
|
|
}
|
|
|
|
trait TypeVal<T> {
|
|
const VAL: T;
|
|
}
|
|
|
|
struct Five;
|
|
|
|
impl TypeVal<usize> for Five {
|
|
const VAL: usize = 5;
|
|
}
|
|
|
|
struct Multiply<N, M> {
|
|
_n: PhantomData<N>,
|
|
_m: PhantomData<M>,
|
|
}
|
|
|
|
impl<N, M> TypeVal<usize> for Multiply<N, M>
|
|
where N: TypeVal<usize>,
|
|
M: TypeVal<usize>,
|
|
{
|
|
const VAL: usize = N::VAL * M::VAL;
|
|
}
|