]> git.proxmox.com Git - rustc.git/blob - src/test/ui/feature-gate-isa_attribute.stderr
New upstream version 1.49.0~beta.4+dfsg1
[rustc.git] / src / test / ui / feature-gate-isa_attribute.stderr
1 error: malformed `instruction_set` attribute input
2 --> $DIR/feature-gate-isa_attribute.rs:1:1
3 |
4 LL | #[instruction_set]
5 | ^^^^^^^^^^^^^^^^^^ help: must be of the form: `#[instruction_set(set)]`
6
7 error[E0658]: the `#[instruction_set]` attribute is an experimental feature
8 --> $DIR/feature-gate-isa_attribute.rs:1:1
9 |
10 LL | #[instruction_set]
11 | ^^^^^^^^^^^^^^^^^^
12 |
13 = note: see issue #74727 <https://github.com/rust-lang/rust/issues/74727> for more information
14 = help: add `#![feature(isa_attribute)]` to the crate attributes to enable
15
16 error[E0778]: must specify an instruction set
17 --> $DIR/feature-gate-isa_attribute.rs:1:1
18 |
19 LL | #[instruction_set]
20 | ^^^^^^^^^^^^^^^^^^
21
22 error: aborting due to 3 previous errors
23
24 Some errors have detailed explanations: E0658, E0778.
25 For more information about an error, try `rustc --explain E0658`.