]> git.proxmox.com Git - rustc.git/blame - src/test/ui/feature-gates/trace_macros-gate.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / feature-gates / trace_macros-gate.stderr
CommitLineData
416331ca 1error[E0658]: use of unstable library feature 'trace_macros': `trace_macros` is not stable enough for use and is subject to change
0731742a 2 --> $DIR/trace_macros-gate.rs:4:5
b7449926 3 |
532ac7d7 4LL | trace_macros!();
416331ca 5 | ^^^^^^^^^^^^
b7449926 6 |
74b04a01 7 = note: see issue #29598 <https://github.com/rust-lang/rust/issues/29598> for more information
416331ca 8 = help: add `#![feature(trace_macros)]` to the crate attributes to enable
b7449926 9
0731742a
XL
10error: trace_macros! accepts only `true` or `false`
11 --> $DIR/trace_macros-gate.rs:4:5
b7449926 12 |
532ac7d7 13LL | trace_macros!();
c295e0f8 14 | ^^^^^^^^^^^^^^^
b7449926 15
416331ca 16error[E0658]: use of unstable library feature 'trace_macros': `trace_macros` is not stable enough for use and is subject to change
0731742a 17 --> $DIR/trace_macros-gate.rs:6:5
b7449926 18 |
532ac7d7 19LL | trace_macros!(true);
416331ca 20 | ^^^^^^^^^^^^
b7449926 21 |
74b04a01 22 = note: see issue #29598 <https://github.com/rust-lang/rust/issues/29598> for more information
416331ca 23 = help: add `#![feature(trace_macros)]` to the crate attributes to enable
b7449926 24
416331ca 25error[E0658]: use of unstable library feature 'trace_macros': `trace_macros` is not stable enough for use and is subject to change
0731742a 26 --> $DIR/trace_macros-gate.rs:7:5
b7449926 27 |
532ac7d7 28LL | trace_macros!(false);
416331ca 29 | ^^^^^^^^^^^^
b7449926 30 |
74b04a01 31 = note: see issue #29598 <https://github.com/rust-lang/rust/issues/29598> for more information
416331ca 32 = help: add `#![feature(trace_macros)]` to the crate attributes to enable
b7449926 33
416331ca 34error[E0658]: use of unstable library feature 'trace_macros': `trace_macros` is not stable enough for use and is subject to change
0731742a 35 --> $DIR/trace_macros-gate.rs:10:26
b7449926 36 |
532ac7d7 37LL | ($x: ident) => { trace_macros!($x) }
416331ca 38 | ^^^^^^^^^^^^
b7449926
XL
39...
40LL | expando!(true);
c295e0f8 41 | -------------- in this macro invocation
b7449926 42 |
74b04a01 43 = note: see issue #29598 <https://github.com/rust-lang/rust/issues/29598> for more information
416331ca 44 = help: add `#![feature(trace_macros)]` to the crate attributes to enable
17df50a5 45 = note: this error originates in the macro `expando` (in Nightly builds, run with -Z macro-backtrace for more info)
b7449926 46
0731742a 47error: aborting due to 5 previous errors
b7449926
XL
48
49For more information about this error, try `rustc --explain E0658`.