2019-06-20 22:59:30 +00:00
|
|
|
error[E0658]: macro local_unstable! is unstable
|
|
|
|
--> $DIR/macro-stability.rs:10:5
|
|
|
|
|
|
|
|
|
LL | local_unstable!();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: add #![feature(local_unstable)] to the crate attributes to enable
|
|
|
|
|
2018-08-08 12:28:26 +00:00
|
|
|
error[E0658]: macro unstable_macro! is unstable
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/macro-stability.rs:11:5
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | unstable_macro!();
|
2018-08-08 12:28:26 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: add #![feature(unstable_macros)] to the crate attributes to enable
|
|
|
|
|
2019-06-20 22:59:30 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0658`.
|