blob: c7b6f1d58f33d798f691ce9554cce7d66049cc1d [file] [log] [blame]
#![feature(associated_consts)]
trait VecN {
const DIM: usize;
}
trait Mat {
type Row: VecN;
}
fn m<M: Mat>() {
let a = [3; M::Row::DIM];
//~^ ERROR constant expression depends on a generic parameter
}
fn main() {
}