mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
13 lines
302 B
Rust
13 lines
302 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, //~ ERROR cannot pattern-match on an array without a fixed length
|
||
|
_ => 1,
|
||
|
};
|
||
|
}
|
||
|
|
||
|
fn main() {}
|