84ac80f192
The previous commit updated `rustfmt.toml` appropriately. This commit is the outcome of running `x fmt --all` with the new formatting options.
9 lines
168 B
Rust
9 lines
168 B
Rust
use std::path::Path;
|
|
|
|
use run_make_support::rustc;
|
|
|
|
fn main() {
|
|
rustc().input("bar.rs").crate_name("foo").run();
|
|
assert!(Path::new("libfoo.rlib").is_file());
|
|
}
|