summaryrefslogtreecommitdiffstats
path: root/tests/ui/attributes/invalid-repr.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/attributes/invalid-repr.stderr')
-rw-r--r--tests/ui/attributes/invalid-repr.stderr12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/ui/attributes/invalid-repr.stderr b/tests/ui/attributes/invalid-repr.stderr
new file mode 100644
index 000000000..98a6a24b3
--- /dev/null
+++ b/tests/ui/attributes/invalid-repr.stderr
@@ -0,0 +1,12 @@
+error[E0517]: attribute should be applied to a struct, enum, function, associated function, or union
+ --> $DIR/invalid-repr.rs:1:8
+ |
+LL | #[repr(align(16))]
+ | ^^^^^^^^^
+LL |
+LL | pub type Foo = i32;
+ | ------------------- not a struct, enum, function, associated function, or union
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0517`.