mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-18 02:38:28 +00:00
39 lines
736 B
Rust
39 lines
736 B
Rust
|
// run-rustfix
|
||
|
#![warn(clippy::if_then_panic)]
|
||
|
|
||
|
fn main() {
|
||
|
let a = vec![1, 2, 3];
|
||
|
let c = Some(2);
|
||
|
if !a.is_empty()
|
||
|
&& a.len() == 3
|
||
|
&& c != None
|
||
|
&& !a.is_empty()
|
||
|
&& a.len() == 3
|
||
|
&& !a.is_empty()
|
||
|
&& a.len() == 3
|
||
|
&& !a.is_empty()
|
||
|
&& a.len() == 3
|
||
|
{
|
||
|
panic!("qaqaq{:?}", a);
|
||
|
}
|
||
|
if !a.is_empty() {
|
||
|
panic!("qaqaq{:?}", a);
|
||
|
}
|
||
|
if !a.is_empty() {
|
||
|
panic!("qwqwq");
|
||
|
}
|
||
|
if a.len() == 3 {
|
||
|
println!("qwq");
|
||
|
println!("qwq");
|
||
|
println!("qwq");
|
||
|
}
|
||
|
if let Some(b) = c {
|
||
|
panic!("orz {}", b);
|
||
|
}
|
||
|
if a.len() == 3 {
|
||
|
panic!("qaqaq");
|
||
|
} else {
|
||
|
println!("qwq");
|
||
|
}
|
||
|
}
|