about summary refs log tree commit diff
path: root/tests/ui/abi/anon-extern-mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/abi/anon-extern-mod.rs')
-rw-r--r--tests/ui/abi/anon-extern-mod.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/ui/abi/anon-extern-mod.rs b/tests/ui/abi/anon-extern-mod.rs
new file mode 100644
index 00000000000..6c7d60d4cb0
--- /dev/null
+++ b/tests/ui/abi/anon-extern-mod.rs
@@ -0,0 +1,18 @@
+// run-pass
+// pretty-expanded FIXME #23616
+// ignore-wasm32-bare no libc to test ffi with
+
+#![feature(rustc_private)]
+
+extern crate libc;
+
+#[link(name = "rust_test_helpers", kind = "static")]
+extern "C" {
+    fn rust_get_test_int() -> libc::intptr_t;
+}
+
+pub fn main() {
+    unsafe {
+        let _ = rust_get_test_int();
+    }
+}