From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- src/test/ui/rmeta/rmeta-rpass.rs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/test/ui/rmeta/rmeta-rpass.rs (limited to 'src/test/ui/rmeta/rmeta-rpass.rs') diff --git a/src/test/ui/rmeta/rmeta-rpass.rs b/src/test/ui/rmeta/rmeta-rpass.rs new file mode 100644 index 000000000..173a6a394 --- /dev/null +++ b/src/test/ui/rmeta/rmeta-rpass.rs @@ -0,0 +1,18 @@ +// 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 }; +} -- cgit v1.2.3