about summary refs log tree commit diff
path: root/tests/run-make/duplicate-output-flavors/rmake.rs
blob: f07339aceb92b7a686a3e43c9ce3ae1bcef83290 (plain)
1
2
3
4
5
6
7
//@ needs-target-std
use run_make_support::rustc;

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