mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-17 07:28:01 +00:00
9 lines
147 B
Rust
9 lines
147 B
Rust
//@ compile-flags: -Znext-solver
|
|
//@ check-pass
|
|
|
|
fn has_default<const N: usize>() where [(); N]: Default {}
|
|
|
|
fn main() {
|
|
has_default::<1>();
|
|
}
|