mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-28 09:51:43 +00:00
14 lines
257 B
Rust
14 lines
257 B
Rust
#![feature(inline_const_pat)]
|
|
//~^ WARN the feature `inline_const_pat` is incomplete
|
|
|
|
fn uwu() {}
|
|
|
|
fn main() {
|
|
let x = [];
|
|
match x[123] {
|
|
const { uwu } => {}
|
|
//~^ ERROR `fn() {uwu}` cannot be used in patterns
|
|
_ => {}
|
|
}
|
|
}
|