about summary refs log tree commit diff
path: root/src/test/ui/feature-gate-edition_macro_pats.rs
blob: bd8a21ea36acd6212df2ed7b6759a53bc0148378 (plain)
1
2
3
4
5
6
7
8
// Feature gate test for `edition_macro_pats` feature.

macro_rules! foo {
    ($x:pat2018) => {}; //~ERROR `pat2018` and `pat2021` are unstable
    ($x:pat2021) => {}; //~ERROR `pat2018` and `pat2021` are unstable
}

fn main() {}