2018-08-08 07:28:26 -05:00
|
|
|
error[E0658]: use of unstable library feature 'function'
|
2021-02-01 08:35:53 -06:00
|
|
|
--> $DIR/internal-unstable.rs:41:25
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | pass_through_allow!(internal_unstable::unstable());
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2019-07-09 04:32:08 -05:00
|
|
|
= help: add `#![feature(function)]` to the crate attributes to enable
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0658]: use of unstable library feature 'function'
|
2021-02-01 08:35:53 -06:00
|
|
|
--> $DIR/internal-unstable.rs:43:27
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | pass_through_noallow!(internal_unstable::unstable());
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2019-07-09 04:32:08 -05:00
|
|
|
= help: add `#![feature(function)]` to the crate attributes to enable
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0658]: use of unstable library feature 'function'
|
2021-02-01 08:35:53 -06:00
|
|
|
--> $DIR/internal-unstable.rs:47:22
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | println!("{:?}", internal_unstable::unstable());
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2019-07-09 04:32:08 -05:00
|
|
|
= help: add `#![feature(function)]` to the crate attributes to enable
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0658]: use of unstable library feature 'function'
|
2021-02-01 08:35:53 -06:00
|
|
|
--> $DIR/internal-unstable.rs:49:10
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | bar!(internal_unstable::unstable());
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2019-07-09 04:32:08 -05:00
|
|
|
= help: add `#![feature(function)]` to the crate attributes to enable
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0658]: use of unstable library feature 'function'
|
2021-02-01 08:35:53 -06:00
|
|
|
--> $DIR/internal-unstable.rs:19:9
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | internal_unstable::unstable();
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
...
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | bar!(internal_unstable::unstable());
|
2021-10-14 13:28:28 -05:00
|
|
|
| ----------------------------------- in this macro invocation
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-07-09 04:32:08 -05:00
|
|
|
= help: add `#![feature(function)]` to the crate attributes to enable
|
2021-02-13 13:52:25 -06:00
|
|
|
= note: this error originates in the macro `foo` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0658`.
|