]> git.lizzy.rs Git - rust.git/commitdiff
Fix reborrows of &mut pointers
authorBjörn Steinbrink <bsteinbr@gmail.com>
Tue, 6 Oct 2015 20:45:56 +0000 (22:45 +0200)
committerBjörn Steinbrink <bsteinbr@gmail.com>
Wed, 7 Oct 2015 15:23:51 +0000 (17:23 +0200)
Fixes #28839

src/librustc_typeck/check/coercion.rs
src/test/compile-fail/borrowck-loan-of-static-data-issue-27616.rs
src/test/run-pass/issue-28839.rs [new file with mode: 0644]

index 30b4cd01ade20d5c714593c57d688bcd41ed42d4..69efaa792fe053e7356d0ccddea67aeb8bcebdc0 100644 (file)
@@ -110,10 +110,6 @@ fn coerce(&self,
                a,
                b);
 
-        if a == b {
-            return Ok(None);
-        }
-
         // Consider coercing the subtype to a DST
         let unsize = self.unpack_actual_value(a, |a| {
             self.coerce_unsized(a, b)
index 4dbab986881c3c99092febe2b206694c11900ab8..228e71025fdf4d8abe39340e9b9165104e7cf926 100644 (file)
@@ -23,7 +23,7 @@ fn evil(mut s: &'static mut String)
     let alias: &'static mut String = s;
     let inner: &str = &alias;
     // free value
-    *s = String::new(); //~ ERROR use of moved value
+    *s = String::new(); //~ ERROR cannot assign
     let _spray = "0wned".to_owned();
     // ... and then use it
     println!("{}", inner);
diff --git a/src/test/run-pass/issue-28839.rs b/src/test/run-pass/issue-28839.rs
new file mode 100644 (file)
index 0000000..a101229
--- /dev/null
@@ -0,0 +1,24 @@
+// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+// ignore-pretty : (#23623) problems with newlines before // comments
+
+pub struct Foo;
+
+pub fn get_foo2<'a>(foo: &'a mut Option<&'a mut Foo>) -> &'a mut Foo {
+    match foo {
+        // Ensure that this is not considered a move, but rather a reborrow.
+        &mut Some(ref mut x) => *x,
+        &mut None => panic!(),
+    }
+}
+
+fn main() {
+}