mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-01 17:04:13 +00:00
17 lines
318 B
Rust
17 lines
318 B
Rust
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
|
|
//~| ERROR constant expression depends on a generic parameter
|
|
}
|
|
fn main() {
|
|
}
|
|
|
|
// https://github.com/rust-lang/rust/issues/39211
|