blob: db101ae248cb6d662cf20c2938c60c824a21e379 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#![feature(associated_consts)]
trait VecN {
const DIM: usize;
}
trait Mat {
type Row: VecN;
}
fn m<M: Mat>() {
let a = [3; M::Row::DIM]; //~ ERROR associated type `Row` not found for `M`
}
fn main() {
}
|