mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
21 lines
395 B
Rust
21 lines
395 B
Rust
//@ known-bug: #114456
|
|
#![feature(adt_const_params)]
|
|
|
|
const EMPTY_MATRIX: <Type as Trait>::Matrix = [0; 1];
|
|
|
|
pub struct Walk<const REMAINING: <Type as Trait>::Matrix> {}
|
|
|
|
impl Walk<EMPTY_MATRIX> {
|
|
pub const fn new() -> Self {
|
|
Self {}
|
|
}
|
|
}
|
|
|
|
pub enum Type {}
|
|
pub trait Trait { type Matrix; }
|
|
impl Trait for Type { type Matrix = [usize; 1]; }
|
|
|
|
fn main() {
|
|
let _ = Walk::new();
|
|
}
|