diff options
Diffstat (limited to 'tests/ui/parser/pat-ranges-1.stderr')
-rw-r--r-- | tests/ui/parser/pat-ranges-1.stderr | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/ui/parser/pat-ranges-1.stderr b/tests/ui/parser/pat-ranges-1.stderr new file mode 100644 index 000000000..b64a3ce5c --- /dev/null +++ b/tests/ui/parser/pat-ranges-1.stderr @@ -0,0 +1,8 @@ +error: expected one of `:`, `;`, `=`, or `|`, found `..=` + --> $DIR/pat-ranges-1.rs:4:21 + | +LL | let macropus!() ..= 11 = 12; + | ^^^ expected one of `:`, `;`, `=`, or `|` + +error: aborting due to previous error + |