rust/tests/run-make/rmeta-preferred/lib.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
472 B
Rust
Raw Normal View History

2016-11-10 15:00:33 -06:00
// Test that using rlibs and rmeta dep crates work together. Specifically, that
2020-01-20 14:35:43 -06: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 15:00:33 -06:00
extern crate rmeta_aux;
use rmeta_aux::Foo;
pub fn foo() {
let _ = Foo { field: 42 };
2016-11-10 15:00:33 -06:00
}