summaryrefslogtreecommitdiffstats
path: root/tests/ui/or-patterns/or-patterns-syntactic-fail-2018.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/or-patterns/or-patterns-syntactic-fail-2018.stderr')
-rw-r--r--tests/ui/or-patterns/or-patterns-syntactic-fail-2018.stderr32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/ui/or-patterns/or-patterns-syntactic-fail-2018.stderr b/tests/ui/or-patterns/or-patterns-syntactic-fail-2018.stderr
new file mode 100644
index 000000000..acc2099bb
--- /dev/null
+++ b/tests/ui/or-patterns/or-patterns-syntactic-fail-2018.stderr
@@ -0,0 +1,32 @@
+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
+ |
+note: while trying to match meta-variable `$p:pat`
+ --> $DIR/or-patterns-syntactic-fail-2018.rs:9:6
+ |
+LL | ($p:pat) => {};
+ | ^^^^^^
+
+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
+ |
+note: while trying to match meta-variable `$p:pat`
+ --> $DIR/or-patterns-syntactic-fail-2018.rs:9:6
+ |
+LL | ($p:pat) => {};
+ | ^^^^^^
+
+error: aborting due to 2 previous errors
+