summaryrefslogtreecommitdiffstats
path: root/src/test/ui/feature-gates/feature-gate-isa_attribute.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/feature-gates/feature-gate-isa_attribute.stderr')
-rw-r--r--src/test/ui/feature-gates/feature-gate-isa_attribute.stderr25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/test/ui/feature-gates/feature-gate-isa_attribute.stderr b/src/test/ui/feature-gates/feature-gate-isa_attribute.stderr
new file mode 100644
index 000000000..2a95a80ca
--- /dev/null
+++ b/src/test/ui/feature-gates/feature-gate-isa_attribute.stderr
@@ -0,0 +1,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`.