summaryrefslogtreecommitdiffstats
path: root/src/test/ui/half-open-range-patterns/half-open-range-pats-ref-ambiguous-interp.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/half-open-range-patterns/half-open-range-pats-ref-ambiguous-interp.stderr')
-rw-r--r--src/test/ui/half-open-range-patterns/half-open-range-pats-ref-ambiguous-interp.stderr55
1 files changed, 0 insertions, 55 deletions
diff --git a/src/test/ui/half-open-range-patterns/half-open-range-pats-ref-ambiguous-interp.stderr b/src/test/ui/half-open-range-patterns/half-open-range-pats-ref-ambiguous-interp.stderr
deleted file mode 100644
index 111e81799..000000000
--- a/src/test/ui/half-open-range-patterns/half-open-range-pats-ref-ambiguous-interp.stderr
+++ /dev/null
@@ -1,55 +0,0 @@
-error: the range pattern here has ambiguous interpretation
- --> $DIR/half-open-range-pats-ref-ambiguous-interp.rs:6:10
- |
-LL | &0.. | _ => {}
- | ^^^ help: add parentheses to clarify the precedence: `(0..)`
-
-error[E0586]: inclusive range with no end
- --> $DIR/half-open-range-pats-ref-ambiguous-interp.rs:8:11
- |
-LL | &0..= | _ => {}
- | ^^^ help: use `..` instead
- |
- = note: inclusive ranges must be bounded at the end (`..=b` or `a..=b`)
-
-error: the range pattern here has ambiguous interpretation
- --> $DIR/half-open-range-pats-ref-ambiguous-interp.rs:8:10
- |
-LL | &0..= | _ => {}
- | ^^^^ help: add parentheses to clarify the precedence: `(0..=)`
-
-error[E0586]: inclusive range with no end
- --> $DIR/half-open-range-pats-ref-ambiguous-interp.rs:11:11
- |
-LL | &0... | _ => {}
- | ^^^ help: use `..` instead
- |
- = note: inclusive ranges must be bounded at the end (`..=b` or `a..=b`)
-
-error: the range pattern here has ambiguous interpretation
- --> $DIR/half-open-range-pats-ref-ambiguous-interp.rs:16:10
- |
-LL | &..0 | _ => {}
- | ^^^ help: add parentheses to clarify the precedence: `(..0)`
-
-error: the range pattern here has ambiguous interpretation
- --> $DIR/half-open-range-pats-ref-ambiguous-interp.rs:18:10
- |
-LL | &..=0 | _ => {}
- | ^^^^ help: add parentheses to clarify the precedence: `(..=0)`
-
-error: range-to patterns with `...` are not allowed
- --> $DIR/half-open-range-pats-ref-ambiguous-interp.rs:20:10
- |
-LL | &...0 | _ => {}
- | ^^^ help: use `..=` instead
-
-error: the range pattern here has ambiguous interpretation
- --> $DIR/half-open-range-pats-ref-ambiguous-interp.rs:20:10
- |
-LL | &...0 | _ => {}
- | ^^^^ help: add parentheses to clarify the precedence: `(..=0)`
-
-error: aborting due to 8 previous errors
-
-For more information about this error, try `rustc --explain E0586`.