rust/src/test/ui/feature-gate-optimize_attribute.stderr

51 lines
1.6 KiB
Plaintext
Raw Normal View History

error[E0658]: #[optimize] attribute is an unstable feature (see issue #54882)
2019-01-18 16:37:52 -06:00
--> $DIR/feature-gate-optimize_attribute.rs:7:1
|
2019-03-09 06:03:44 -06:00
LL | #[optimize(size)]
| ^^^^^^^^^^^^^^^^^
|
= help: add #![feature(optimize_attribute)] to the crate attributes to enable
error[E0658]: #[optimize] attribute is an unstable feature (see issue #54882)
2019-01-18 16:37:52 -06:00
--> $DIR/feature-gate-optimize_attribute.rs:10:1
|
2019-03-09 06:03:44 -06:00
LL | #[optimize(speed)]
| ^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(optimize_attribute)] to the crate attributes to enable
error[E0658]: #[optimize] attribute is an unstable feature (see issue #54882)
2019-01-18 16:37:52 -06:00
--> $DIR/feature-gate-optimize_attribute.rs:13:1
|
2019-01-18 16:37:52 -06:00
LL | #[optimize(banana)]
| ^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(optimize_attribute)] to the crate attributes to enable
error[E0658]: #[optimize] attribute is an unstable feature (see issue #54882)
2019-01-18 16:37:52 -06:00
--> $DIR/feature-gate-optimize_attribute.rs:4:1
|
2019-03-09 06:03:44 -06:00
LL | #[optimize(size)]
| ^^^^^^^^^^^^^^^^^
|
= help: add #![feature(optimize_attribute)] to the crate attributes to enable
error[E0658]: #[optimize] attribute is an unstable feature (see issue #54882)
2019-01-18 16:37:52 -06:00
--> $DIR/feature-gate-optimize_attribute.rs:2:1
|
2019-03-09 06:03:44 -06:00
LL | #![optimize(speed)]
| ^^^^^^^^^^^^^^^^^^^
|
= help: add #![feature(optimize_attribute)] to the crate attributes to enable
2019-01-18 16:37:52 -06:00
error[E0722]: invalid argument
--> $DIR/feature-gate-optimize_attribute.rs:13:12
|
LL | #[optimize(banana)]
| ^^^^^^
error: aborting due to 6 previous errors
2019-01-18 16:37:52 -06:00
Some errors occurred: E0658, E0722.
For more information about an error, try `rustc --explain E0658`.