2024-06-06 14:34:34 -05:00
|
|
|
use std::path::Path;
|
2024-06-06 03:19:15 -05:00
|
|
|
|
2024-06-06 14:34:34 -05:00
|
|
|
use run_make_support::rustc;
|
2024-07-28 17:13:50 -05:00
|
|
|
|
2024-06-06 03:19:15 -05:00
|
|
|
fn main() {
|
|
|
|
rustc().input("bar.rs").crate_name("foo").run();
|
2024-06-06 14:34:34 -05:00
|
|
|
assert!(Path::new("libfoo.rlib").is_file());
|
2024-06-06 03:19:15 -05:00
|
|
|
}
|