2021-10-23 07:42:52 +00:00
|
|
|
// edition:2018
|
2021-09-14 08:28:09 +00:00
|
|
|
// run-rustfix
|
2021-10-23 07:42:52 +00:00
|
|
|
//FIXME: This does not correctly match in edition 2021, see #7843
|
2021-10-12 14:23:05 +00:00
|
|
|
#![warn(clippy::manual_assert)]
|
2021-09-14 08:28:09 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
assert!(a.is_empty(), "qaqaq{:?}", a);
|
|
|
|
assert!(a.is_empty(), "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");
|
|
|
|
}
|
2021-09-30 11:06:42 +00:00
|
|
|
let b = vec![1, 2, 3];
|
|
|
|
assert!(!b.is_empty(), "panic1");
|
2021-10-01 05:13:09 +00:00
|
|
|
assert!(!(b.is_empty() && a.is_empty()), "panic2");
|
|
|
|
assert!(!(a.is_empty() && !b.is_empty()), "panic3");
|
|
|
|
assert!(!(b.is_empty() || a.is_empty()), "panic4");
|
|
|
|
assert!(!(a.is_empty() || !b.is_empty()), "panic5");
|
2021-09-14 08:28:09 +00:00
|
|
|
}
|