mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
17 lines
194 B
Rust
17 lines
194 B
Rust
// check-pass
|
|
#![allow(dead_code)]
|
|
#![allow(unused_variables)]
|
|
trait VecN {
|
|
const DIM: usize;
|
|
}
|
|
|
|
trait Mat {
|
|
type Row: VecN;
|
|
}
|
|
|
|
fn m<M: Mat>() {
|
|
let x = M::Row::DIM;
|
|
}
|
|
|
|
fn main() {}
|