about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFelix S. Klock II <pnkfelix@pnkfx.org>2015-04-28 17:51:08 +0200
committerFelix S. Klock II <pnkfelix@pnkfx.org>2015-04-28 17:51:08 +0200
commit1f793482930ab98c3ecb2da7507cd4d55ace023c (patch)
tree6140844ab66bb10b378da69791f4c49a9abb5dc5
parentb892264ea4f048feb5f380d3e659d82ba463f5b7 (diff)
downloadrust-1f793482930ab98c3ecb2da7507cd4d55ace023c.tar.gz
rust-1f793482930ab98c3ecb2da7507cd4d55ace023c.zip
regression test for Issue 24895.
-rw-r--r--src/test/compile-fail/issue-24895-copy-clone-dropck.rs38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/test/compile-fail/issue-24895-copy-clone-dropck.rs b/src/test/compile-fail/issue-24895-copy-clone-dropck.rs
new file mode 100644
index 00000000000..28835117369
--- /dev/null
+++ b/src/test/compile-fail/issue-24895-copy-clone-dropck.rs
@@ -0,0 +1,38 @@
+// 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.
+
+// Check that one cannot subvert Drop Check rule via a user-defined
+// Clone implementation.
+
+#![allow(unused_variables, unused_assignments)]
+
+struct D<T:Copy>(T, &'static str);
+
+#[derive(Copy)]
+struct S<'a>(&'a D<i32>, &'static str);
+impl<'a> Clone for S<'a> {
+    fn clone(&self) -> S<'a> {
+        println!("cloning `S(_, {})` and thus accessing: {}", self.1, (self.0).0);
+        S(self.0, self.1)
+    }
+}
+
+impl<T:Copy> Drop for D<T> {
+    fn drop(&mut self) {
+        println!("calling Drop for {}", self.1);
+        let _call = self.0.clone();
+    }
+}
+
+fn main() {
+    let (d2, d1);
+    d1 = D(34, "d1");
+    d2 = D(S(&d1, "inner"), "d2"); //~ ERROR `d1` does not live long enough
+}