about summary refs log tree commit diff
path: root/tests/ui/unique-object-noncopyable.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/unique-object-noncopyable.rs')
-rw-r--r--tests/ui/unique-object-noncopyable.rs25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/ui/unique-object-noncopyable.rs b/tests/ui/unique-object-noncopyable.rs
new file mode 100644
index 00000000000..2c40dfc7a4b
--- /dev/null
+++ b/tests/ui/unique-object-noncopyable.rs
@@ -0,0 +1,25 @@
+trait Foo {
+    fn f(&self);
+}
+
+struct Bar {
+    x: isize,
+}
+
+impl Drop for Bar {
+    fn drop(&mut self) {}
+}
+
+impl Foo for Bar {
+    fn f(&self) {
+        println!("hi");
+    }
+}
+
+
+
+fn main() {
+    let x = Box::new(Bar { x: 10 });
+    let y: Box<dyn Foo> = x as Box<dyn Foo>;
+    let _z = y.clone(); //~ ERROR the method
+}