]> git.lizzy.rs Git - rust.git/blob - src/test/ui/trace_macros-gate.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[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:14: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[E0658]: `trace_macros` is not stable enough for use and is subject to change (see issue #29598)
10   --> $DIR/trace_macros-gate.rs:15:5
11    |
12 LL |     trace_macros!(1); //~ ERROR `trace_macros` is not stable
13    |     ^^^^^^^^^^^^^^^^^
14    |
15    = help: add #![feature(trace_macros)] to the crate attributes to enable
16
17 error[E0658]: `trace_macros` is not stable enough for use and is subject to change (see issue #29598)
18   --> $DIR/trace_macros-gate.rs:16:5
19    |
20 LL |     trace_macros!(ident); //~ ERROR `trace_macros` is not stable
21    |     ^^^^^^^^^^^^^^^^^^^^^
22    |
23    = help: add #![feature(trace_macros)] to the crate attributes to enable
24
25 error[E0658]: `trace_macros` is not stable enough for use and is subject to change (see issue #29598)
26   --> $DIR/trace_macros-gate.rs:17:5
27    |
28 LL |     trace_macros!(for); //~ ERROR `trace_macros` is not stable
29    |     ^^^^^^^^^^^^^^^^^^^
30    |
31    = help: add #![feature(trace_macros)] to the crate attributes to enable
32
33 error[E0658]: `trace_macros` is not stable enough for use and is subject to change (see issue #29598)
34   --> $DIR/trace_macros-gate.rs:18:5
35    |
36 LL |     trace_macros!(true,); //~ ERROR `trace_macros` is not stable
37    |     ^^^^^^^^^^^^^^^^^^^^^
38    |
39    = help: add #![feature(trace_macros)] to the crate attributes to enable
40
41 error[E0658]: `trace_macros` is not stable enough for use and is subject to change (see issue #29598)
42   --> $DIR/trace_macros-gate.rs:19:5
43    |
44 LL |     trace_macros!(false 1); //~ ERROR `trace_macros` is not stable
45    |     ^^^^^^^^^^^^^^^^^^^^^^^
46    |
47    = help: add #![feature(trace_macros)] to the crate attributes to enable
48
49 error[E0658]: `trace_macros` is not stable enough for use and is subject to change (see issue #29598)
50   --> $DIR/trace_macros-gate.rs:26:26
51    |
52 LL |         ($x: ident) => { trace_macros!($x) } //~ ERROR `trace_macros` is not stable
53    |                          ^^^^^^^^^^^^^^^^^
54 ...
55 LL |     expando!(true);
56    |     --------------- in this macro invocation
57    |
58    = help: add #![feature(trace_macros)] to the crate attributes to enable
59
60 error: aborting due to 7 previous errors
61
62 For more information about this error, try `rustc --explain E0658`.