2024-08-28 10:01:40 -05:00
|
|
|
use run_make_support::{path, 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-08-28 10:01:40 -05:00
|
|
|
assert!(path("libfoo.rlib").is_file());
|
2024-06-06 03:19:15 -05:00
|
|
|
}
|