summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-43483.rs
blob: 76dd1c2eb5817957de60c709c00257332db28b0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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() {}