mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
13 lines
202 B
Rust
13 lines
202 B
Rust
#![feature(inline_const_pat)]
|
|
|
|
fn uwu() {}
|
|
|
|
fn main() {
|
|
let x = [];
|
|
match x[123] {
|
|
const { uwu } => {}
|
|
//~^ ERROR `fn() {uwu}` cannot be used in patterns
|
|
_ => {}
|
|
}
|
|
}
|