summaryrefslogtreecommitdiffstats
path: root/src/test/ui/proc-macro/macros-in-extern-derive.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/proc-macro/macros-in-extern-derive.stderr')
-rw-r--r--src/test/ui/proc-macro/macros-in-extern-derive.stderr11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/test/ui/proc-macro/macros-in-extern-derive.stderr b/src/test/ui/proc-macro/macros-in-extern-derive.stderr
new file mode 100644
index 000000000..efd9ff225
--- /dev/null
+++ b/src/test/ui/proc-macro/macros-in-extern-derive.stderr
@@ -0,0 +1,11 @@
+error[E0774]: `derive` may only be applied to `struct`s, `enum`s and `union`s
+ --> $DIR/macros-in-extern-derive.rs:2:5
+ |
+LL | #[derive(Copy)]
+ | ^^^^^^^^^^^^^^^ not applicable here
+LL | fn f();
+ | ------- not a `struct`, `enum` or `union`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0774`.