mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 04:52:40 +00:00
7 lines
162 B
Rust
7 lines
162 B
Rust
//@ known-bug: #127962
|
|
#![feature(generic_const_exprs, const_arg_path)]
|
|
|
|
fn zero_init<const usize: usize>() -> Substs1<{ (N) }> {
|
|
Substs1([0; { (usize) }])
|
|
}
|