mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-27 04:31:18 +00:00
6 lines
123 B
Rust
6 lines
123 B
Rust
//@ known-bug: #140275
|
|
#![feature(generic_const_exprs)]
|
|
trait T{}
|
|
trait V{}
|
|
impl<const N: i32> T for [i32; N::<&mut V>] {}
|