mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 15:39:20 +00:00
13 lines
236 B
Rust
13 lines
236 B
Rust
#![allow(incomplete_features)]
|
|
#![feature(generic_const_exprs)]
|
|
|
|
fn something(path: [usize; N]) -> impl Clone {
|
|
//~^ ERROR cannot find value `N` in this scope
|
|
match path {
|
|
[] => 0,
|
|
_ => 1,
|
|
};
|
|
}
|
|
|
|
fn main() {}
|