rust/tests/ui/feature-gates/feature-gate-optimize_attribute.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1.6 KiB
Plaintext
Raw Normal View History

error[E0658]: the `#[optimize]` attribute is an experimental feature
--> $DIR/feature-gate-optimize_attribute.rs:3:1
|
LL | #[optimize(size)]
| ^^^^^^^^^^^^^^^^^
|
2020-02-07 12:07:02 +00:00
= note: see issue #54882 <https://github.com/rust-lang/rust/issues/54882> for more information
= 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
--> $DIR/feature-gate-optimize_attribute.rs:6:1
|
LL | #[optimize(speed)]
| ^^^^^^^^^^^^^^^^^^
|
= note: see issue #54882 <https://github.com/rust-lang/rust/issues/54882> for more information
= help: add `#![feature(optimize_attribute)]` to the crate attributes to enable
2024-01-10 06:39:02 +00:00
= 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
--> $DIR/feature-gate-optimize_attribute.rs:9:1
|
LL | #[optimize(banana)]
| ^^^^^^^^^^^^^^^^^^^
|
2020-02-07 12:07:02 +00:00
= note: see issue #54882 <https://github.com/rust-lang/rust/issues/54882> for more information
= help: add `#![feature(optimize_attribute)]` to the crate attributes to enable
2024-01-10 06:39:02 +00:00
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
2019-01-18 22:37:52 +00:00
error[E0722]: invalid argument
--> $DIR/feature-gate-optimize_attribute.rs:9:12
2019-01-18 22:37:52 +00:00
|
LL | #[optimize(banana)]
| ^^^^^^
error: aborting due to 4 previous errors
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`.