mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 09:06:27 +00:00
7 lines
149 B
Rust
7 lines
149 B
Rust
use run_make_support::{path, rustc};
|
|
|
|
fn main() {
|
|
rustc().input("bar.rs").crate_name("foo").run();
|
|
assert!(path("libfoo.rlib").is_file());
|
|
}
|