about summary refs log tree commit diff
path: root/tests/run-make/suspicious-library/rmake.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-make/suspicious-library/rmake.rs')
-rw-r--r--tests/run-make/suspicious-library/rmake.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/run-make/suspicious-library/rmake.rs b/tests/run-make/suspicious-library/rmake.rs
index e789607482b..1dc9bc53b67 100644
--- a/tests/run-make/suspicious-library/rmake.rs
+++ b/tests/run-make/suspicious-library/rmake.rs
@@ -3,9 +3,10 @@
 
 //@ ignore-cross-compile
 
-use run_make_support::{dynamic_lib_name, rustc};
 use std::fs::File;
 
+use run_make_support::{dynamic_lib_name, rustc};
+
 fn main() {
     rustc().input("foo.rs").arg("-Cprefer-dynamic").run();
     File::create(dynamic_lib_name("foo-something-special")).unwrap();