summaryrefslogtreecommitdiffstats
path: root/src/test/ui/feature-gates/trace_macros-gate.rs
blob: c9af04741ac7701e086ebaac37f77d9a834bf046 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Test that the trace_macros feature gate is on.

fn main() {
    trace_macros!(); //~ ERROR `trace_macros` is not stable
                     //~| ERROR trace_macros! accepts only `true` or `false`
    trace_macros!(true); //~ ERROR `trace_macros` is not stable
    trace_macros!(false); //~ ERROR `trace_macros` is not stable

    macro_rules! expando {
        ($x: ident) => { trace_macros!($x) } //~ ERROR `trace_macros` is not stable
    }

    expando!(true);
}