2021-11-04 12:52:36 +00:00
|
|
|
// revisions: edition2018 edition2021
|
|
|
|
// [edition2018] edition:2018
|
|
|
|
// [edition2021] edition:2021
|
2021-09-28 17:03:12 +00:00
|
|
|
// run-rustfix
|
2021-12-06 11:33:31 +00:00
|
|
|
|
2021-11-04 12:52:36 +00:00
|
|
|
#![warn(clippy::manual_assert)]
|
2021-12-06 11:33:31 +00:00
|
|
|
#![allow(clippy::nonminimal_bool)]
|
2021-09-28 17:03:12 +00:00
|
|
|
|
2022-02-10 17:40:06 +00:00
|
|
|
macro_rules! one {
|
|
|
|
() => {
|
|
|
|
1
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-09-28 17:03:12 +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-10-07 09:21:30 +00:00
|
|
|
let b = vec![1, 2, 3];
|
|
|
|
assert!(!b.is_empty(), "panic1");
|
|
|
|
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");
|
2022-02-10 17:40:06 +00:00
|
|
|
assert!(!a.is_empty(), "with expansion {}", one!());
|
2021-09-28 17:03:12 +00:00
|
|
|
}
|