about summary refs log tree commit diff
path: root/tests/run-make/arm64ec-import-export-static/rmake.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-make/arm64ec-import-export-static/rmake.rs')
-rw-r--r--tests/run-make/arm64ec-import-export-static/rmake.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/run-make/arm64ec-import-export-static/rmake.rs b/tests/run-make/arm64ec-import-export-static/rmake.rs
deleted file mode 100644
index 7fa31144810..00000000000
--- a/tests/run-make/arm64ec-import-export-static/rmake.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-// Test that a static can be exported from one crate and imported into another.
-//
-// This was broken for Arm64EC as only functions, not variables, should be
-// decorated with `#`.
-// See https://github.com/rust-lang/rust/issues/138541
-
-//@ needs-llvm-components: aarch64
-//@ only-windows
-
-use run_make_support::rustc;
-
-fn main() {
-    rustc().input("export.rs").target("aarch64-pc-windows-msvc").panic("abort").run();
-    rustc().input("import.rs").target("aarch64-pc-windows-msvc").panic("abort").run();
-}