summaryrefslogtreecommitdiffstats
path: root/src/test/ui/feature-gates/feature-gate-isa_attribute.stderr
blob: 2a95a80ca6178235e8b82c55125dec5c2be24461 (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
error: malformed `instruction_set` attribute input
  --> $DIR/feature-gate-isa_attribute.rs:1:1
   |
LL | #[instruction_set]
   | ^^^^^^^^^^^^^^^^^^ help: must be of the form: `#[instruction_set(set)]`

error[E0658]: the `#[instruction_set]` attribute is an experimental feature
  --> $DIR/feature-gate-isa_attribute.rs:1:1
   |
LL | #[instruction_set]
   | ^^^^^^^^^^^^^^^^^^
   |
   = note: see issue #74727 <https://github.com/rust-lang/rust/issues/74727> for more information
   = help: add `#![feature(isa_attribute)]` to the crate attributes to enable

error[E0778]: must specify an instruction set
  --> $DIR/feature-gate-isa_attribute.rs:1:1
   |
LL | #[instruction_set]
   | ^^^^^^^^^^^^^^^^^^

error: aborting due to 3 previous errors

Some errors have detailed explanations: E0658, E0778.
For more information about an error, try `rustc --explain E0658`.