summaryrefslogtreecommitdiffstats
path: root/src/test/run-make/raw-dylib-inline-cross-dylib/driver.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/run-make/raw-dylib-inline-cross-dylib/driver.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/run-make/raw-dylib-inline-cross-dylib/driver.rs')
-rw-r--r--src/test/run-make/raw-dylib-inline-cross-dylib/driver.rs21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/run-make/raw-dylib-inline-cross-dylib/driver.rs b/src/test/run-make/raw-dylib-inline-cross-dylib/driver.rs
deleted file mode 100644
index f72ded7d9..000000000
--- a/src/test/run-make/raw-dylib-inline-cross-dylib/driver.rs
+++ /dev/null
@@ -1,21 +0,0 @@
-#![feature(raw_dylib)]
-
-extern crate raw_dylib_test;
-extern crate raw_dylib_test_wrapper;
-
-#[link(name = "extern_2", kind = "raw-dylib")]
-extern {
- fn extern_fn_2();
-}
-
-fn main() {
- // NOTE: The inlined call to `extern_fn_2` links against the function in extern_2.dll instead
- // of extern_1.dll since raw-dylib symbols from the current crate are passed to the linker
- // first, so any ambiguous names will prefer the current crate's definition.
- raw_dylib_test::inline_library_function();
- raw_dylib_test::library_function();
- raw_dylib_test_wrapper::inline_library_function_calls_inline();
- unsafe {
- extern_fn_2();
- }
-}