about summary refs log tree commit diff
path: root/tests/ui/issues/issue-51907.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/issues/issue-51907.rs')
-rw-r--r--tests/ui/issues/issue-51907.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/ui/issues/issue-51907.rs b/tests/ui/issues/issue-51907.rs
new file mode 100644
index 00000000000..9378f435713
--- /dev/null
+++ b/tests/ui/issues/issue-51907.rs
@@ -0,0 +1,19 @@
+// run-pass
+trait Foo {
+    extern "C" fn borrow(&self);
+    extern "C" fn take(self: Box<Self>);
+}
+
+struct Bar;
+impl Foo for Bar {
+    #[allow(improper_ctypes_definitions)]
+    extern "C" fn borrow(&self) {}
+    #[allow(improper_ctypes_definitions)]
+    extern "C" fn take(self: Box<Self>) {}
+}
+
+fn main() {
+    let foo: Box<dyn Foo> = Box::new(Bar);
+    foo.borrow();
+    foo.take()
+}