mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
11 lines
310 B
Rust
11 lines
310 B
Rust
// 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
|
|
_ => {}
|
|
}
|
|
}
|