2019-06-21 16:18:09 -05:00
|
|
|
error[E0658]: use of unstable library feature 'local_unstable'
|
2022-01-19 09:24:49 -06:00
|
|
|
--> $DIR/macro-stability.rs:22:5
|
2019-06-20 17:59:30 -05:00
|
|
|
|
|
|
|
|
LL | local_unstable!();
|
2019-07-03 15:59:03 -05:00
|
|
|
| ^^^^^^^^^^^^^^
|
2019-06-20 17:59:30 -05:00
|
|
|
|
|
2019-07-09 04:32:08 -05:00
|
|
|
= help: add `#![feature(local_unstable)]` to the crate attributes to enable
|
2019-06-20 17:59:30 -05:00
|
|
|
|
2019-06-21 18:44:45 -05:00
|
|
|
error[E0658]: use of unstable library feature 'local_unstable'
|
2022-01-19 09:24:49 -06:00
|
|
|
--> $DIR/macro-stability.rs:23:5
|
2019-06-21 18:44:45 -05:00
|
|
|
|
|
|
|
|
LL | local_unstable_modern!();
|
2019-07-03 15:59:03 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
2019-06-21 18:44:45 -05:00
|
|
|
|
|
2019-07-09 04:32:08 -05:00
|
|
|
= help: add `#![feature(local_unstable)]` to the crate attributes to enable
|
2019-06-21 18:44:45 -05:00
|
|
|
|
2019-06-21 16:18:09 -05:00
|
|
|
error[E0658]: use of unstable library feature 'unstable_macros'
|
2022-01-19 09:24:49 -06:00
|
|
|
--> $DIR/macro-stability.rs:24:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | unstable_macro!();
|
2019-07-03 15:59:03 -05:00
|
|
|
| ^^^^^^^^^^^^^^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-07-09 04:32:08 -05:00
|
|
|
= help: add `#![feature(unstable_macros)]` to the crate attributes to enable
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2022-02-15 01:00:21 -06:00
|
|
|
warning: use of deprecated macro `deprecated_macro`: deprecation note
|
2022-01-19 09:24:49 -06:00
|
|
|
--> $DIR/macro-stability.rs:27:5
|
2019-06-21 18:44:45 -05:00
|
|
|
|
|
|
|
|
LL | deprecated_macro!();
|
2019-07-03 15:59:03 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
2019-06-21 18:44:45 -05:00
|
|
|
|
|
2019-07-16 15:17:38 -05:00
|
|
|
= note: `#[warn(deprecated)]` on by default
|
2019-06-21 18:44:45 -05:00
|
|
|
|
2022-02-15 01:00:21 -06:00
|
|
|
warning: use of deprecated macro `local_deprecated`: local deprecation note
|
2022-01-19 09:24:49 -06:00
|
|
|
--> $DIR/macro-stability.rs:29:5
|
2019-06-21 18:44:45 -05:00
|
|
|
|
|
|
|
|
LL | local_deprecated!();
|
2019-07-03 15:59:03 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
2019-06-21 18:44:45 -05:00
|
|
|
|
2020-03-11 10:30:09 -05:00
|
|
|
error: aborting due to 3 previous errors; 2 warnings emitted
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0658`.
|