about summary refs log tree commit diff
path: root/library/alloc/src/rc/tests.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/alloc/src/rc/tests.rs')
-rw-r--r--library/alloc/src/rc/tests.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/alloc/src/rc/tests.rs b/library/alloc/src/rc/tests.rs
index 5e2e4beb94a..84e8b325f71 100644
--- a/library/alloc/src/rc/tests.rs
+++ b/library/alloc/src/rc/tests.rs
@@ -1,8 +1,8 @@
-use super::*;
-
 use std::cell::RefCell;
 use std::clone::Clone;
 
+use super::*;
+
 #[test]
 fn test_clone() {
     let x = Rc::new(RefCell::new(5));