mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 02:40:45 +00:00
13 lines
310 B
Rust
13 lines
310 B
Rust
//@ known-bug: #111742
|
|
// ignore-tidy-linelength
|
|
|
|
#![allow(incomplete_features)]
|
|
#![feature(generic_const_exprs)]
|
|
|
|
const CONST: u32 = 0;
|
|
struct Test<const N: u32, const M: u32 = { CONST/* Must be a const and not a Literal */ }> where [(); N as usize]: , ([u32; N as usize]);
|
|
|
|
fn main() {
|
|
let _: Test<1>;
|
|
}
|