]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/let_if_seq.rs
Rename "blacklisted name" to "disallowed name" throughout
[rust.git] / tests / ui / let_if_seq.rs
index 5bfa32dd56cb1d2a8be20f96e2f9c8632a92ed08..ee351880b80e447bfb48d525bd2d7ac5588379a2 100644 (file)
@@ -2,7 +2,9 @@
     unused_variables,
     unused_assignments,
     clippy::similar_names,
-    clippy::blacklisted_name
+    clippy::disallowed_name,
+    clippy::branches_sharing_code,
+    clippy::needless_late_init
 )]
 #![warn(clippy::useless_let_if_seq)]
 
@@ -33,6 +35,7 @@ fn issue985_alt() -> i32 {
     x
 }
 
+#[allow(clippy::manual_strip)]
 fn issue975() -> String {
     let mut udn = "dummy".to_string();
     if udn.starts_with("uuid:") {
@@ -108,4 +111,12 @@ fn main() {
     }
 
     baz = 1337;
+
+    // issue 3043 - types with interior mutability should not trigger this lint
+    use std::cell::Cell;
+    let mut val = Cell::new(1);
+    if true {
+        val = Cell::new(2);
+    }
+    println!("{}", val.get());
 }