Skip to content

Commit 14ece82

Browse files
committed
tidy fix
1 parent 4e320a6 commit 14ece82

File tree

1 file changed

+2
-9
lines changed
  • tests/run-make/no-cdylib-as-rdylib

1 file changed

+2
-9
lines changed

tests/run-make/no-cdylib-as-rdylib/rmake.rs

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,7 @@
1010
use run_make_support::{run, rustc};
1111

1212
fn main() {
13-
rustc()
14-
.input("bar.rs")
15-
.crate_type("rlib")
16-
.crate_type("cdylib")
17-
.run();
18-
rustc()
19-
.input("foo.rs")
20-
.prefer_dynamic()
21-
.run();
13+
rustc().input("bar.rs").crate_type("rlib").crate_type("cdylib").run();
14+
rustc().input("foo.rs").prefer_dynamic().run();
2215
run();
2316
}

0 commit comments

Comments
 (0)