summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/borrowck-match-already-borrowed.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/borrowck/borrowck-match-already-borrowed.rs')
-rw-r--r--src/test/ui/borrowck/borrowck-match-already-borrowed.rs26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/test/ui/borrowck/borrowck-match-already-borrowed.rs b/src/test/ui/borrowck/borrowck-match-already-borrowed.rs
deleted file mode 100644
index a925cbbf5..000000000
--- a/src/test/ui/borrowck/borrowck-match-already-borrowed.rs
+++ /dev/null
@@ -1,26 +0,0 @@
-enum Foo {
- A(i32),
- B
-}
-
-fn match_enum() {
- let mut foo = Foo::B;
- let p = &mut foo;
- let _ = match foo { //~ ERROR [E0503]
- Foo::B => 1,
- _ => 2,
- Foo::A(x) => x //~ ERROR [E0503]
- };
- drop(p);
-}
-
-
-fn main() {
- let mut x = 1;
- let r = &mut x;
- let _ = match x {
- x => x + 1, //~ ERROR [E0503]
- y => y + 2, //~ ERROR [E0503]
- };
- drop(r);
-}