Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
157 B
Rust
Raw Normal View History

use run_make_support::rustc;
fn main() {
rustc().input("foo.rs").crate_type("rlib").run();
rustc().input("foo.rs").crate_type("rlib,rlib").run();
}