]> git.lizzy.rs Git - rust.git/blob - src/test/ui/trace_macros-gate.stderr
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / trace_macros-gate.stderr
1 error[E0658]: `trace_macros` is not stable enough for use and is subject to change (see issue #29598)
2   --> $DIR/trace_macros-gate.rs:4:5
3    |
4 LL |     trace_macros!(); //~ ERROR `trace_macros` is not stable
5    |     ^^^^^^^^^^^^^^^^
6    |
7    = help: add #![feature(trace_macros)] to the crate attributes to enable
8
9 error: trace_macros! accepts only `true` or `false`
10   --> $DIR/trace_macros-gate.rs:4:5
11    |
12 LL |     trace_macros!(); //~ ERROR `trace_macros` is not stable
13    |     ^^^^^^^^^^^^^^^^
14
15 error[E0658]: `trace_macros` is not stable enough for use and is subject to change (see issue #29598)
16   --> $DIR/trace_macros-gate.rs:6:5
17    |
18 LL |     trace_macros!(true); //~ ERROR `trace_macros` is not stable
19    |     ^^^^^^^^^^^^^^^^^^^^
20    |
21    = help: add #![feature(trace_macros)] to the crate attributes to enable
22
23 error[E0658]: `trace_macros` is not stable enough for use and is subject to change (see issue #29598)
24   --> $DIR/trace_macros-gate.rs:7:5
25    |
26 LL |     trace_macros!(false); //~ ERROR `trace_macros` is not stable
27    |     ^^^^^^^^^^^^^^^^^^^^^
28    |
29    = help: add #![feature(trace_macros)] to the crate attributes to enable
30
31 error[E0658]: `trace_macros` is not stable enough for use and is subject to change (see issue #29598)
32   --> $DIR/trace_macros-gate.rs:10:26
33    |
34 LL |         ($x: ident) => { trace_macros!($x) } //~ ERROR `trace_macros` is not stable
35    |                          ^^^^^^^^^^^^^^^^^
36 ...
37 LL |     expando!(true);
38    |     --------------- in this macro invocation
39    |
40    = help: add #![feature(trace_macros)] to the crate attributes to enable
41
42 error: aborting due to 5 previous errors
43
44 For more information about this error, try `rustc --explain E0658`.