summaryrefslogtreecommitdiffstats
path: root/tests/ui/rmeta/rmeta-rpass.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/rmeta/rmeta-rpass.rs')
-rw-r--r--tests/ui/rmeta/rmeta-rpass.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/ui/rmeta/rmeta-rpass.rs b/tests/ui/rmeta/rmeta-rpass.rs
deleted file mode 100644
index 173a6a394..000000000
--- a/tests/ui/rmeta/rmeta-rpass.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-// run-pass
-// Test that using rlibs and rmeta dep crates work together. Specifically, that
-// there can be both an rmeta and an rlib file and rustc will prefer the rmeta
-// file.
-//
-// This behavior is simply making sure this doesn't accidentally change; in this
-// case we want to make sure that the rlib isn't being used as that would cause
-// bugs in -Zbinary-dep-depinfo (see #68298).
-
-// aux-build:rmeta-rmeta.rs
-// aux-build:rmeta-rlib-rpass.rs
-
-extern crate rmeta_aux;
-use rmeta_aux::Foo;
-
-pub fn main() {
- let _ = Foo { field2: 42 };
-}