summary refs log tree commit diff
path: root/src/test/ui/feature-gate-optimize_attribute.stderr
blob: ddd4c457d731b669f17c300784fe1911a3b98edb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
error[E0658]: #[optimize] attribute is an unstable feature (see issue #54882)
  --> $DIR/feature-gate-optimize_attribute.rs:7:1
   |
LL | #[optimize(size)] //~ ERROR #54882
   | ^^^^^^^^^^^^^^^^^
   |
   = help: add #![feature(optimize_attribute)] to the crate attributes to enable

error[E0658]: #[optimize] attribute is an unstable feature (see issue #54882)
  --> $DIR/feature-gate-optimize_attribute.rs:10:1
   |
LL | #[optimize(speed)] //~ ERROR #54882
   | ^^^^^^^^^^^^^^^^^^
   |
   = help: add #![feature(optimize_attribute)] to the crate attributes to enable

error[E0658]: #[optimize] attribute is an unstable feature (see issue #54882)
  --> $DIR/feature-gate-optimize_attribute.rs:13:1
   |
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)
  --> $DIR/feature-gate-optimize_attribute.rs:4:1
   |
LL | #[optimize(size)] //~ ERROR #54882
   | ^^^^^^^^^^^^^^^^^
   |
   = help: add #![feature(optimize_attribute)] to the crate attributes to enable

error[E0658]: #[optimize] attribute is an unstable feature (see issue #54882)
  --> $DIR/feature-gate-optimize_attribute.rs:2:1
   |
LL | #![optimize(speed)] //~ ERROR #54882
   | ^^^^^^^^^^^^^^^^^^^
   |
   = help: add #![feature(optimize_attribute)] to the crate attributes to enable

error[E0722]: invalid argument
  --> $DIR/feature-gate-optimize_attribute.rs:13:12
   |
LL | #[optimize(banana)]
   |            ^^^^^^

error: aborting due to 6 previous errors

Some errors occurred: E0658, E0722.
For more information about an error, try `rustc --explain E0658`.