rust/tests/run-make/suspicious-library/rmake.rs
Nicholas Nethercote 84ac80f192 Reformat use declarations.
The previous commit updated `rustfmt.toml` appropriately. This commit is
the outcome of running `x fmt --all` with the new formatting options.
2024-07-29 08:26:52 +10:00

16 lines
490 B
Rust

// This test creates some fake dynamic libraries with nothing inside,
// and checks if rustc avoids them and successfully compiles as a result.
//@ ignore-cross-compile
use std::fs::File;
use run_make_support::{dynamic_lib_name, rustc};
fn main() {
rustc().input("foo.rs").arg("-Cprefer-dynamic").run();
File::create(dynamic_lib_name("foo-something-special")).unwrap();
File::create(dynamic_lib_name("foo-something-special2")).unwrap();
rustc().input("bar.rs").run();
}