summaryrefslogtreecommitdiff
path: root/tests/ui/macros/feature-gate-expr_fragment_specifier_2024.rs
blob: 5a737b298214d89b222bc9a482e6f0f4cbf13291 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@  compile-flags: --edition=2024 -Z unstable-options

macro_rules! m {
    ($e:expr_2021) => { //~ ERROR: fragment specifier `expr_2021` is unstable
        $e
    };
}

fn main() {
    m!(());
}