summaryrefslogtreecommitdiffstats
path: root/src/test/ui/or-patterns/or-patterns-syntactic-fail-2018.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/or-patterns/or-patterns-syntactic-fail-2018.stderr')
-rw-r--r--src/test/ui/or-patterns/or-patterns-syntactic-fail-2018.stderr20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/ui/or-patterns/or-patterns-syntactic-fail-2018.stderr b/src/test/ui/or-patterns/or-patterns-syntactic-fail-2018.stderr
new file mode 100644
index 000000000..001c68a97
--- /dev/null
+++ b/src/test/ui/or-patterns/or-patterns-syntactic-fail-2018.stderr
@@ -0,0 +1,20 @@
+error: no rules expected the token `|`
+ --> $DIR/or-patterns-syntactic-fail-2018.rs:12:15
+ |
+LL | macro_rules! accept_pat {
+ | ----------------------- when calling this macro
+...
+LL | accept_pat!(p | q);
+ | ^ no rules expected this token in macro call
+
+error: no rules expected the token `|`
+ --> $DIR/or-patterns-syntactic-fail-2018.rs:13:13
+ |
+LL | macro_rules! accept_pat {
+ | ----------------------- when calling this macro
+...
+LL | accept_pat!(|p| q);
+ | ^ no rules expected this token in macro call
+
+error: aborting due to 2 previous errors
+