about summary refs log tree commit diff
path: root/tests/ui/borrowck/issue-51117.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/borrowck/issue-51117.rs')
-rw-r--r--tests/ui/borrowck/issue-51117.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ui/borrowck/issue-51117.rs b/tests/ui/borrowck/issue-51117.rs
new file mode 100644
index 00000000000..e4664e4f3ea
--- /dev/null
+++ b/tests/ui/borrowck/issue-51117.rs
@@ -0,0 +1,15 @@
+// Regression test for #51117 in borrowck interaction with match
+// default bindings. The borrow of `*bar` created by `baz` was failing
+// to register as a conflict with `bar.take()`.
+
+fn main() {
+    let mut foo = Some("foo".to_string());
+    let bar = &mut foo;
+    match bar {
+        Some(baz) => {
+            bar.take(); //~ ERROR cannot borrow
+            drop(baz);
+        },
+        None => unreachable!(),
+    }
+}