]> git.proxmox.com Git - rustc.git/blame - src/test/ui/pattern/non-structural-match-types.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / pattern / non-structural-match-types.rs
CommitLineData
3c0e092e
XL
1// edition:2021
2#![allow(incomplete_features)]
3#![allow(unreachable_code)]
4#![feature(const_async_blocks)]
5#![feature(inline_const_pat)]
6
7fn main() {
8 match loop {} {
9 const { || {} } => {}, //~ ERROR cannot be used in patterns
10 }
11 match loop {} {
12 const { async {} } => {}, //~ ERROR cannot be used in patterns
13 }
14}