about summary refs log tree commit diff
path: root/src/test/ui/borrowck/issue-81365-10.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/borrowck/issue-81365-10.rs')
-rw-r--r--src/test/ui/borrowck/issue-81365-10.rs26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/test/ui/borrowck/issue-81365-10.rs b/src/test/ui/borrowck/issue-81365-10.rs
deleted file mode 100644
index 7602e184a9f..00000000000
--- a/src/test/ui/borrowck/issue-81365-10.rs
+++ /dev/null
@@ -1,26 +0,0 @@
-use std::ops::Deref;
-
-struct DerefTarget {
-    target_field: bool,
-}
-struct Container {
-    target: DerefTarget,
-    container_field: bool,
-}
-
-impl Deref for Container {
-    type Target = DerefTarget;
-    fn deref(&self) -> &Self::Target {
-        &self.target
-    }
-}
-
-impl Container {
-    fn bad_borrow(&mut self) {
-        let first = &self.deref().target_field;
-        self.container_field = true; //~ ERROR E0506
-        first;
-    }
-}
-
-fn main() {}