mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-01 00:36:54 +00:00
18 lines
245 B
Rust
18 lines
245 B
Rust
// https://github.com/rust-lang/rust/issues/43483
|
|
//@ 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() {}
|