2019-07-26 21:54:25 +00:00
|
|
|
// run-pass
|
2016-11-10 21:00:33 +00:00
|
|
|
// Test that using rlibs and rmeta dep crates work together. Specifically, that
|
2020-01-20 20:35:43 +00:00
|
|
|
// 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).
|
2016-11-10 21:00:33 +00:00
|
|
|
|
2019-03-12 00:49:17 +00:00
|
|
|
// aux-build:rmeta-rmeta.rs
|
2019-07-26 23:07:23 +00:00
|
|
|
// aux-build:rmeta-rlib-rpass.rs
|
2016-11-10 21:00:33 +00:00
|
|
|
|
|
|
|
extern crate rmeta_aux;
|
|
|
|
use rmeta_aux::Foo;
|
|
|
|
|
|
|
|
pub fn main() {
|
2020-01-20 20:35:43 +00:00
|
|
|
let _ = Foo { field2: 42 };
|
2016-11-10 21:00:33 +00:00
|
|
|
}
|