Skip to content

Commit f225db1

Browse files
committed
review nits
1 parent 77413d4 commit f225db1

File tree

1 file changed

+1
-3
lines changed
  • tests/run-make/issue-125484-used-dependencies

1 file changed

+1
-3
lines changed

tests/run-make/issue-125484-used-dependencies/rmake.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,12 @@
66
// make compiletest annotations reproduce the ICE with the minimizations from issues #125474 and
77
// #125484.
88

9-
extern crate run_make_support;
10-
119
use run_make_support::{rustc, tmp_dir};
1210

1311
fn main() {
1412
// The dependency is not itself significant, apart from sharing a name with one of main's
1513
// modules.
16-
rustc().crate_name("same").crate_type("lib").input("dependency.rs").run();
14+
rustc().crate_name("same").crate_type("rlib").input("dependency.rs").run();
1715

1816
// Here, an ICE would happen when building the linker command.
1917
rustc().input("main.rs").extern_("same", tmp_dir().join("libsame.rlib")).run();

0 commit comments

Comments
 (0)