2024-08-28 11:01:40 -04:00
|
|
|
use run_make_support::{path, rustc};
|
2024-07-29 08:13:50 +10:00
|
|
|
|
2024-06-06 10:19:15 +02:00
|
|
|
fn main() {
|
|
|
|
rustc().input("bar.rs").crate_name("foo").run();
|
2024-08-28 11:01:40 -04:00
|
|
|
assert!(path("libfoo.rlib").is_file());
|
2024-06-06 10:19:15 +02:00
|
|
|
}
|