2019-08-23 01:09:51 +02:00
|
|
|
error[E0658]: the `#[optimize]` attribute is an experimental feature
|
2024-10-20 08:34:15 -06:00
|
|
|
--> $DIR/feature-gate-optimize_attribute.rs:3:1
|
2018-11-25 19:56:10 +02:00
|
|
|
|
|
2024-05-29 23:36:11 +03:00
|
|
|
LL | #[optimize(size)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
2018-11-25 19:56:10 +02:00
|
|
|
|
|
2020-02-07 13:07:02 +01:00
|
|
|
= note: see issue #54882 <https://github.com/rust-lang/rust/issues/54882> for more information
|
2024-05-29 21:30:21 +03:00
|
|
|
= help: add `#![feature(optimize_attribute)]` to the crate attributes to enable
|
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
|
|
|
|
|
|
|
error[E0658]: the `#[optimize]` attribute is an experimental feature
|
2024-10-20 08:34:15 -06:00
|
|
|
--> $DIR/feature-gate-optimize_attribute.rs:6:1
|
2024-05-29 21:30:21 +03:00
|
|
|
|
|
2024-05-29 23:36:11 +03:00
|
|
|
LL | #[optimize(speed)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
2024-05-29 21:30:21 +03:00
|
|
|
|
|
|
|
|
= note: see issue #54882 <https://github.com/rust-lang/rust/issues/54882> for more information
|
2019-07-09 11:32:08 +02:00
|
|
|
= help: add `#![feature(optimize_attribute)]` 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-11-25 19:56:10 +02:00
|
|
|
|
2019-08-23 01:09:51 +02:00
|
|
|
error[E0658]: the `#[optimize]` attribute is an experimental feature
|
2024-10-20 08:34:15 -06:00
|
|
|
--> $DIR/feature-gate-optimize_attribute.rs:9:1
|
2018-11-25 19:56:10 +02:00
|
|
|
|
|
2024-05-29 23:36:11 +03:00
|
|
|
LL | #[optimize(banana)]
|
2018-11-25 19:56:10 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2020-02-07 13:07:02 +01:00
|
|
|
= note: see issue #54882 <https://github.com/rust-lang/rust/issues/54882> for more information
|
2019-07-09 11:32:08 +02:00
|
|
|
= help: add `#![feature(optimize_attribute)]` 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-11-25 19:56:10 +02:00
|
|
|
|
2019-01-19 00:37:52 +02:00
|
|
|
error[E0722]: invalid argument
|
2024-10-20 08:34:15 -06:00
|
|
|
--> $DIR/feature-gate-optimize_attribute.rs:9:12
|
2019-01-19 00:37:52 +02:00
|
|
|
|
|
|
|
|
LL | #[optimize(banana)]
|
|
|
|
| ^^^^^^
|
|
|
|
|
2024-10-20 08:34:15 -06:00
|
|
|
error: aborting due to 4 previous errors
|
2018-11-25 19:56:10 +02:00
|
|
|
|
2021-07-20 20:13:08 +01:00
|
|
|
Some errors have detailed explanations: E0658, E0722.
|
|
|
|
For more information about an error, try `rustc --explain E0658`.
|