2019-07-09 11:32:08 +02:00
|
|
|
error[E0658]: `#[optimize]` attribute is an unstable feature
|
2019-01-19 00:37:52 +02:00
|
|
|
--> $DIR/feature-gate-optimize_attribute.rs:7:1
|
2018-11-25 19:56:10 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | #[optimize(size)]
|
2018-11-25 19:56:10 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2019-04-11 11:42:06 -07:00
|
|
|
= note: for more information, see https://github.com/rust-lang/rust/issues/54882
|
2019-07-09 11:32:08 +02:00
|
|
|
= help: add `#![feature(optimize_attribute)]` to the crate attributes to enable
|
2018-11-25 19:56:10 +02:00
|
|
|
|
2019-07-09 11:32:08 +02:00
|
|
|
error[E0658]: `#[optimize]` attribute is an unstable feature
|
2019-01-19 00:37:52 +02:00
|
|
|
--> $DIR/feature-gate-optimize_attribute.rs:10:1
|
2018-11-25 19:56:10 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | #[optimize(speed)]
|
2018-11-25 19:56:10 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2019-04-11 11:42:06 -07:00
|
|
|
= note: for more information, see https://github.com/rust-lang/rust/issues/54882
|
2019-07-09 11:32:08 +02:00
|
|
|
= help: add `#![feature(optimize_attribute)]` to the crate attributes to enable
|
2018-11-25 19:56:10 +02:00
|
|
|
|
2019-07-09 11:32:08 +02:00
|
|
|
error[E0658]: `#[optimize]` attribute is an unstable feature
|
2019-01-19 00:37:52 +02:00
|
|
|
--> $DIR/feature-gate-optimize_attribute.rs:13:1
|
2018-11-25 19:56:10 +02:00
|
|
|
|
|
2019-01-19 00:37:52 +02:00
|
|
|
LL | #[optimize(banana)]
|
2018-11-25 19:56:10 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2019-04-11 11:42:06 -07:00
|
|
|
= note: for more information, see https://github.com/rust-lang/rust/issues/54882
|
2019-07-09 11:32:08 +02:00
|
|
|
= help: add `#![feature(optimize_attribute)]` to the crate attributes to enable
|
2018-11-25 19:56:10 +02:00
|
|
|
|
2019-07-09 11:32:08 +02:00
|
|
|
error[E0658]: `#[optimize]` attribute is an unstable feature
|
2019-01-19 00:37:52 +02:00
|
|
|
--> $DIR/feature-gate-optimize_attribute.rs:4:1
|
2018-11-25 19:56:10 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | #[optimize(size)]
|
2018-11-25 19:56:10 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2019-04-11 11:42:06 -07:00
|
|
|
= note: for more information, see https://github.com/rust-lang/rust/issues/54882
|
2019-07-09 11:32:08 +02:00
|
|
|
= help: add `#![feature(optimize_attribute)]` to the crate attributes to enable
|
2018-11-25 19:56:10 +02:00
|
|
|
|
2019-07-09 11:32:08 +02:00
|
|
|
error[E0658]: `#[optimize]` attribute is an unstable feature
|
2019-01-19 00:37:52 +02:00
|
|
|
--> $DIR/feature-gate-optimize_attribute.rs:2:1
|
2018-11-25 19:56:10 +02:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | #![optimize(speed)]
|
2018-11-25 19:56:10 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2019-04-11 11:42:06 -07:00
|
|
|
= note: for more information, see https://github.com/rust-lang/rust/issues/54882
|
2019-07-09 11:32:08 +02:00
|
|
|
= help: add `#![feature(optimize_attribute)]` to the crate attributes to enable
|
2018-11-25 19:56:10 +02:00
|
|
|
|
2019-01-19 00:37:52 +02: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 19:56:10 +02:00
|
|
|
|
2019-04-17 13:26:38 -04:00
|
|
|
For more information about this error, try `rustc --explain E0658`.
|