]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/op_ref.rs
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / op_ref.rs
index 96a208ef807236962e1ff1c069591934743c405a..1112b6794cfeca4811a510033f3786d8ad23034b 100644 (file)
@@ -7,10 +7,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-
-#![feature(tool_lints)]
-
-
 #![allow(unused_variables, clippy::blacklisted_name)]
 
 use std::collections::HashSet;
@@ -19,7 +15,7 @@ fn main() {
     let tracked_fds: HashSet<i32> = HashSet::new();
     let new_fds = HashSet::new();
     let unwanted = &tracked_fds - &new_fds;
-    
+
     let foo = &5 - &6;
 
     let bar = String::new();