blob: 2c62671d0c711742e9b93eba868eade1f3ab8f04 [file] [log] [blame] [edit]
//@ 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() {}