blob: a123ae4849661c82dd3a572e2d36b48372aa27cb [file] [log] [blame]
// compile-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() {}