2020-11-11 00:00:53 +00:00
|
|
|
// Tests that :pat in macros in edition 2021 allows top-level or-patterns.
|
|
|
|
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ run-pass
|
|
|
|
//@ edition:2021
|
2020-11-11 00:00:53 +00:00
|
|
|
|
|
|
|
macro_rules! accept_pat {
|
|
|
|
($p:pat) => {};
|
|
|
|
}
|
|
|
|
|
|
|
|
accept_pat!(p | q);
|
|
|
|
|
|
|
|
fn main() {}
|