mirror of https://github.com/rust-lang/rust
15 lines
549 B
Rust
15 lines
549 B
Rust
// In this test, baz.rs is looking for an extern crate "a" which
|
|
// does not exist, and can only run through the --extern rustc flag
|
|
// defining that the "a" crate is in fact just "foo". This test
|
|
// checks that the --extern flag takes precedence over the extern
|
|
// crate statement in the code.
|
|
// See https://github.com/rust-lang/rust/pull/52723
|
|
|
|
use run_make_support::{rust_lib_name, rustc};
|
|
|
|
fn main() {
|
|
rustc().input("foo.rs").run();
|
|
rustc().input("bar.rs").run();
|
|
rustc().input("baz.rs").extern_("a", rust_lib_name("foo")).run();
|
|
}
|