2019-08-22 23:09:51 +00:00
|
|
|
error[E0658]: the `#[optimize]` attribute is an experimental feature
|
2019-01-18 22:37:52 +00:00
|
|
|
--> $DIR/feature-gate-optimize_attribute.rs:7:1
|
2018-11-25 17:56:10 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | #[optimize(size)]
|
2018-11-25 17:56:10 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #54882 <https://github.com/rust-lang/rust/issues/54882> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(optimize_attribute)]` to the crate attributes to enable
|
2018-11-25 17:56:10 +00:00
|
|
|
|
2019-08-22 23:09:51 +00:00
|
|
|
error[E0658]: the `#[optimize]` attribute is an experimental feature
|
2019-01-18 22:37:52 +00:00
|
|
|
--> $DIR/feature-gate-optimize_attribute.rs:10:1
|
2018-11-25 17:56:10 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | #[optimize(speed)]
|
2018-11-25 17:56:10 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #54882 <https://github.com/rust-lang/rust/issues/54882> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(optimize_attribute)]` to the crate attributes to enable
|
2018-11-25 17:56:10 +00:00
|
|
|
|
2019-08-22 23:09:51 +00:00
|
|
|
error[E0658]: the `#[optimize]` attribute is an experimental feature
|
2019-01-18 22:37:52 +00:00
|
|
|
--> $DIR/feature-gate-optimize_attribute.rs:13:1
|
2018-11-25 17:56:10 +00:00
|
|
|
|
|
2019-01-18 22:37:52 +00:00
|
|
|
LL | #[optimize(banana)]
|
2018-11-25 17:56:10 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #54882 <https://github.com/rust-lang/rust/issues/54882> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(optimize_attribute)]` to the crate attributes to enable
|
2018-11-25 17:56:10 +00:00
|
|
|
|
2019-08-22 23:09:51 +00:00
|
|
|
error[E0658]: the `#[optimize]` attribute is an experimental feature
|
2019-01-18 22:37:52 +00:00
|
|
|
--> $DIR/feature-gate-optimize_attribute.rs:4:1
|
2018-11-25 17:56:10 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | #[optimize(size)]
|
2018-11-25 17:56:10 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #54882 <https://github.com/rust-lang/rust/issues/54882> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(optimize_attribute)]` to the crate attributes to enable
|
2018-11-25 17:56:10 +00:00
|
|
|
|
2019-08-22 23:09:51 +00:00
|
|
|
error[E0658]: the `#[optimize]` attribute is an experimental feature
|
2019-01-18 22:37:52 +00:00
|
|
|
--> $DIR/feature-gate-optimize_attribute.rs:2:1
|
2018-11-25 17:56:10 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | #![optimize(speed)]
|
2018-11-25 17:56:10 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #54882 <https://github.com/rust-lang/rust/issues/54882> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(optimize_attribute)]` to the crate attributes to enable
|
2018-11-25 17:56:10 +00:00
|
|
|
|
2019-01-18 22:37:52 +00:00
|
|
|
error[E0722]: invalid argument
|
|
|
|
--> $DIR/feature-gate-optimize_attribute.rs:13:12
|
|
|
|
|
|
|
|
|
LL | #[optimize(banana)]
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
2018-11-25 17:56:10 +00:00
|
|
|
|
2021-07-20 19:13:08 +00:00
|
|
|
Some errors have detailed explanations: E0658, E0722.
|
|
|
|
For more information about an error, try `rustc --explain E0658`.
|