summaryrefslogtreecommitdiffstats
path: root/tests/ui/rfc-1445-restrict-constants-in-patterns/match-forbidden-without-eq.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/rfc-1445-restrict-constants-in-patterns/match-forbidden-without-eq.rs')
-rw-r--r--tests/ui/rfc-1445-restrict-constants-in-patterns/match-forbidden-without-eq.rs23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/ui/rfc-1445-restrict-constants-in-patterns/match-forbidden-without-eq.rs b/tests/ui/rfc-1445-restrict-constants-in-patterns/match-forbidden-without-eq.rs
deleted file mode 100644
index 59a22c337..000000000
--- a/tests/ui/rfc-1445-restrict-constants-in-patterns/match-forbidden-without-eq.rs
+++ /dev/null
@@ -1,23 +0,0 @@
-#[derive(PartialEq)]
-struct Foo {
- x: u32
-}
-
-const FOO: Foo = Foo { x: 0 };
-
-fn main() {
- let y = Foo { x: 1 };
- match y {
- FOO => { }
- //~^ ERROR must be annotated with `#[derive(PartialEq, Eq)]`
- _ => { }
- }
-
- let x = 0.0;
- match x {
- f32::INFINITY => { }
- //~^ WARNING floating-point types cannot be used in patterns
- //~| WARNING this was previously accepted by the compiler but is being phased out
- _ => { }
- }
-}