summaryrefslogtreecommitdiffstats
path: root/src/test/ui/half-open-range-patterns/half-open-range-pats-ref-ambiguous-interp.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/half-open-range-patterns/half-open-range-pats-ref-ambiguous-interp.rs')
-rw-r--r--src/test/ui/half-open-range-patterns/half-open-range-pats-ref-ambiguous-interp.rs24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/test/ui/half-open-range-patterns/half-open-range-pats-ref-ambiguous-interp.rs b/src/test/ui/half-open-range-patterns/half-open-range-pats-ref-ambiguous-interp.rs
deleted file mode 100644
index 2d63fe078..000000000
--- a/src/test/ui/half-open-range-patterns/half-open-range-pats-ref-ambiguous-interp.rs
+++ /dev/null
@@ -1,24 +0,0 @@
-fn main() {}
-
-#[cfg(FALSE)]
-fn syntax() {
- match &0 {
- &0.. | _ => {}
- //~^ ERROR the range pattern here has ambiguous interpretation
- &0..= | _ => {}
- //~^ ERROR the range pattern here has ambiguous interpretation
- //~| ERROR inclusive range with no end
- &0... | _ => {}
- //~^ ERROR inclusive range with no end
- }
-
- match &0 {
- &..0 | _ => {}
- //~^ ERROR the range pattern here has ambiguous interpretation
- &..=0 | _ => {}
- //~^ ERROR the range pattern here has ambiguous interpretation
- &...0 | _ => {}
- //~^ ERROR the range pattern here has ambiguous interpretation
- //~| ERROR range-to patterns with `...` are not allowed
- }
-}