]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/min_max.rs
Auto merge of #4478 - tsurai:master, r=flip1995
[rust.git] / tests / ui / min_max.rs
index 9b29f73b2ac2139c885b7214d55125a842f3f8bf..8307d4b3019f7cf077fc673c34bc7481da55c3ae 100644 (file)
@@ -1,13 +1,10 @@
+#![warn(clippy::all)]
 
-
-
-#![warn(clippy)]
-
-use std::cmp::{min, max};
-use std::cmp::min as my_min;
 use std::cmp::max as my_max;
+use std::cmp::min as my_min;
+use std::cmp::{max, min};
 
-const LARGE : usize = 3;
+const LARGE: usize = 3;
 
 fn main() {
     let x;