about summary refs log tree commit diff
path: root/tests/ui/structs-enums/unit-like-struct-drop-run.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/structs-enums/unit-like-struct-drop-run.rs')
-rw-r--r--tests/ui/structs-enums/unit-like-struct-drop-run.rs24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/ui/structs-enums/unit-like-struct-drop-run.rs b/tests/ui/structs-enums/unit-like-struct-drop-run.rs
new file mode 100644
index 00000000000..1e9c269a4d3
--- /dev/null
+++ b/tests/ui/structs-enums/unit-like-struct-drop-run.rs
@@ -0,0 +1,24 @@
+// run-pass
+// needs-unwind
+// ignore-emscripten no threads support
+
+// Make sure the destructor is run for unit-like structs.
+
+use std::thread;
+
+struct Foo;
+
+impl Drop for Foo {
+    fn drop(&mut self) {
+        panic!("This panic should happen.");
+    }
+}
+
+pub fn main() {
+    let x = thread::spawn(move|| {
+        let _b = Foo;
+    }).join();
+
+    let s = x.unwrap_err().downcast::<&'static str>().unwrap();
+    assert_eq!(&**s, "This panic should happen.");
+}