Sign in
fuchsia
/
third_party
/
rust
/
8429c9911b68afe9c0cc5804cb15fc22f03d913c
/
.
/
tests
/
run-make
/
duplicate-output-flavors
/
rmake.rs
blob: f07339aceb92b7a686a3e43c9ce3ae1bcef83290 [
file
] [
log
] [
blame
]
//@ 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
();
}