rust/tests/ui/inline-const/pat-match-fndef.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
202 B
Rust
Raw Permalink Normal View History

2023-08-14 23:03:04 -05:00
#![feature(inline_const_pat)]
fn uwu() {}
fn main() {
let x = [];
match x[123] {
const { uwu } => {}
//~^ ERROR `fn() {uwu}` cannot be used in patterns
_ => {}
}
}