summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/unused/unused-macro-with-follow-violation.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/lint/unused/unused-macro-with-follow-violation.stderr')
-rw-r--r--tests/ui/lint/unused/unused-macro-with-follow-violation.stderr10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/ui/lint/unused/unused-macro-with-follow-violation.stderr b/tests/ui/lint/unused/unused-macro-with-follow-violation.stderr
new file mode 100644
index 000000000..5eced4f06
--- /dev/null
+++ b/tests/ui/lint/unused/unused-macro-with-follow-violation.stderr
@@ -0,0 +1,10 @@
+error: `$e:expr` is followed by `+`, which is not allowed for `expr` fragments
+ --> $DIR/unused-macro-with-follow-violation.rs:4:14
+ |
+LL | ($e:expr +) => ()
+ | ^ not allowed after `expr` fragments
+ |
+ = note: allowed there are: `=>`, `,` or `;`
+
+error: aborting due to previous error
+