summaryrefslogtreecommitdiffstats
path: root/src/test/ui/rfcs/rfc1717/library-override.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/rfcs/rfc1717/library-override.rs')
-rw-r--r--src/test/ui/rfcs/rfc1717/library-override.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/rfcs/rfc1717/library-override.rs b/src/test/ui/rfcs/rfc1717/library-override.rs
deleted file mode 100644
index 014ccac31..000000000
--- a/src/test/ui/rfcs/rfc1717/library-override.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-// run-pass
-// ignore-wasm32-bare no libc to test ffi with
-// compile-flags: -lstatic=wronglibrary:rust_test_helpers
-
-#[link(name = "wronglibrary", kind = "dylib")]
-extern "C" {
- pub fn rust_dbg_extern_identity_u32(x: u32) -> u32;
-}
-
-fn main() {
- unsafe {
- rust_dbg_extern_identity_u32(42);
- }
-}