about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorMark Rousskov <mark.simulacrum@gmail.com>2020-01-20 15:35:43 -0500
committerMark Rousskov <mark.simulacrum@gmail.com>2020-01-20 16:00:01 -0500
commitbe663bf850fcdcedc678782e5e0945124d5791fb (patch)
treeaeb836e48a5bc058b046197846f230703787b8dd /src
parent4bb68828de9c424c572a7ec11417660478ca7501 (diff)
downloadrust-be663bf850fcdcedc678782e5e0945124d5791fb.tar.gz
rust-be663bf850fcdcedc678782e5e0945124d5791fb.zip
Correct rmeta/rlib test
Diffstat (limited to 'src')
-rw-r--r--src/test/ui/rmeta-rpass.rs9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/test/ui/rmeta-rpass.rs b/src/test/ui/rmeta-rpass.rs
index 5a63b5b8598..173a6a394eb 100644
--- a/src/test/ui/rmeta-rpass.rs
+++ b/src/test/ui/rmeta-rpass.rs
@@ -1,6 +1,11 @@
 // 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 rlib.
+// 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
@@ -9,5 +14,5 @@ extern crate rmeta_aux;
 use rmeta_aux::Foo;
 
 pub fn main() {
-    let _ = Foo { field: 42 };
+    let _ = Foo { field2: 42 };
 }