]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/macro-stability.stderr
Rollup merge of #106717 - klensy:typo, r=lcnr
[rust.git] / tests / ui / macros / macro-stability.stderr
1 error[E0658]: use of unstable library feature 'local_unstable'
2   --> $DIR/macro-stability.rs:22:5
3    |
4 LL |     local_unstable!();
5    |     ^^^^^^^^^^^^^^
6    |
7    = help: add `#![feature(local_unstable)]` to the crate attributes to enable
8
9 error[E0658]: use of unstable library feature 'local_unstable'
10   --> $DIR/macro-stability.rs:23:5
11    |
12 LL |     local_unstable_modern!();
13    |     ^^^^^^^^^^^^^^^^^^^^^
14    |
15    = help: add `#![feature(local_unstable)]` to the crate attributes to enable
16
17 error[E0658]: use of unstable library feature 'unstable_macros'
18   --> $DIR/macro-stability.rs:24:5
19    |
20 LL |     unstable_macro!();
21    |     ^^^^^^^^^^^^^^
22    |
23    = help: add `#![feature(unstable_macros)]` to the crate attributes to enable
24
25 warning: use of deprecated macro `deprecated_macro`: deprecation note
26   --> $DIR/macro-stability.rs:27:5
27    |
28 LL |     deprecated_macro!();
29    |     ^^^^^^^^^^^^^^^^
30    |
31    = note: `#[warn(deprecated)]` on by default
32
33 warning: use of deprecated macro `local_deprecated`: local deprecation note
34   --> $DIR/macro-stability.rs:29:5
35    |
36 LL |     local_deprecated!();
37    |     ^^^^^^^^^^^^^^^^
38
39 error: aborting due to 3 previous errors; 2 warnings emitted
40
41 For more information about this error, try `rustc --explain E0658`.