rust/src/test/ui/issues/issue-39211.rs
2018-12-25 21:08:33 -07:00

15 lines
217 B
Rust

#![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() {
}