Files
rust/tests/ui/internal/internal-unstable.stderr

65 lines
2.6 KiB
Plaintext
Raw Normal View History

2025-02-09 22:50:01 +01:00
error: `allow_internal_unstable` expects a list of feature names
--> $DIR/internal-unstable.rs:10:5
|
LL | #[allow_internal_unstable]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
error: `allow_internal_unstable` expects a list of feature names
--> $DIR/internal-unstable.rs:59:9
|
LL | #[allow_internal_unstable]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0658]: use of unstable library feature `function`
--> $DIR/internal-unstable.rs:48:25
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | pass_through_allow!(internal_unstable::unstable());
2018-08-08 14:28:26 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add `#![feature(function)]` to the crate attributes to enable
2024-01-10 01:39:02 -05:00
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
2018-08-08 14:28:26 +02:00
error[E0658]: use of unstable library feature `function`
--> $DIR/internal-unstable.rs:50:27
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | pass_through_noallow!(internal_unstable::unstable());
2018-08-08 14:28:26 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add `#![feature(function)]` to the crate attributes to enable
2024-01-10 01:39:02 -05:00
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
2018-08-08 14:28:26 +02:00
error[E0658]: use of unstable library feature `function`
--> $DIR/internal-unstable.rs:54:22
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | println!("{:?}", internal_unstable::unstable());
2018-08-08 14:28:26 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add `#![feature(function)]` to the crate attributes to enable
2024-01-10 01:39:02 -05:00
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
2018-08-08 14:28:26 +02:00
error[E0658]: use of unstable library feature `function`
--> $DIR/internal-unstable.rs:56:10
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | bar!(internal_unstable::unstable());
2018-08-08 14:28:26 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add `#![feature(function)]` to the crate attributes to enable
2024-01-10 01:39:02 -05:00
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
2018-08-08 14:28:26 +02:00
error[E0658]: use of unstable library feature `function`
--> $DIR/internal-unstable.rs:18:9
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | internal_unstable::unstable();
2018-08-08 14:28:26 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
...
2019-03-09 15:03:44 +03:00
LL | bar!(internal_unstable::unstable());
2021-10-14 13:28:28 -05:00
| ----------------------------------- in this macro invocation
2018-08-08 14:28:26 +02:00
|
= help: add `#![feature(function)]` to the crate attributes to enable
2024-01-10 01:39:02 -05:00
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
= note: this error originates in the macro `foo` which comes from the expansion of the macro `bar` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 14:28:26 +02:00
2025-02-09 22:50:01 +01:00
error: aborting due to 7 previous errors
2018-08-08 14:28:26 +02:00
For more information about this error, try `rustc --explain E0658`.