summaryrefslogtreecommitdiffstats
path: root/src/test/ui/macros/vec-macro-in-pattern.rs
blob: ce4298b8bb3347ada138f0ff73c94e00dfb9b94e (plain)
1
2
3
4
5
6
7
8
9
10
// This is a regression test for #61933
// Verify that the vec![] macro may not be used in patterns
// and that the resulting diagnostic is actually helpful.

fn main() {
    match Some(vec![42]) {
        Some(vec![43]) => {} //~ ERROR arbitrary expressions aren't allowed in patterns
        _ => {}
    }
}