rust-clippy/tests/ui/comparison_to_empty.rs
Philipp Krones 62a82b361c
Format let-chains across the code base
In the updated nightly version, it seems that rustfmt now supports formatting
let-chains. Since we're using them a lot, it's a lot of reformatting.
2023-11-02 17:24:30 +01:00

36 lines
764 B
Rust

#![warn(clippy::comparison_to_empty)]
#![allow(clippy::borrow_deref_ref, clippy::needless_if, clippy::useless_vec)]
#![feature(let_chains)]
fn main() {
// Disallow comparisons to empty
let s = String::new();
let _ = s == "";
let _ = s != "";
let v = vec![0];
let _ = v == [];
let _ = v != [];
if let [] = &*v {}
let s = [0].as_slice();
if let [] = s {}
if let [] = &*s {}
if let [] = &*s
&& s == []
{}
// Allow comparisons to non-empty
let s = String::new();
let _ = s == " ";
let _ = s != " ";
let v = vec![0];
let _ = v == [0];
let _ = v != [0];
if let [0] = &*v {}
let s = [0].as_slice();
if let [0] = s {}
if let [0] = &*s
&& s == [0]
{}
}