]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/non_expressive_names.rs
iterate List by value
[rust.git] / tests / ui / non_expressive_names.rs
index cd158287ff700c53f2fd98ef8758be90d4c513b1..58415b4aede260b668dbd3db7a0f9a56bc56ecd8 100644 (file)
@@ -23,32 +23,6 @@ fn fill(&mut self) {
     }
 }
 
-fn bla() {
-    let a: i32;
-    let (b, c, d): (i32, i64, i16);
-    {
-        {
-            let cdefg: i32;
-            let blar: i32;
-        }
-        {
-            let e: i32;
-        }
-        {
-            let e: i32;
-            let f: i32;
-        }
-        match 5 {
-            1 => println!(""),
-            e => panic!(),
-        }
-        match 5 {
-            1 => println!(""),
-            _ => panic!(),
-        }
-    }
-}
-
 fn underscores_and_numbers() {
     let _1 = 1; //~ERROR Consider a more descriptive name
     let ____1 = 1; //~ERROR Consider a more descriptive name