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