rust/tests/ui/let_unit.rs

64 lines
1.2 KiB
Rust
Raw Normal View History

// run-rustfix
2018-07-28 23:34:52 +08:00
#![warn(clippy::let_unit_value)]
#![allow(clippy::no_effect)]
2015-09-10 14:51:14 +08:00
#![allow(unused_variables)]
macro_rules! let_and_return {
($n:expr) => {{
let ret = $n;
2018-12-10 06:26:16 +08:00
}};
2015-09-10 14:51:14 +08:00
}
fn main() {
2017-02-08 21:58:07 +08:00
let _x = println!("x");
2018-12-10 06:26:16 +08:00
let _y = 1; // this is fine
let _z = ((), 1); // this as well
if true {
2017-02-08 21:58:07 +08:00
let _a = ();
}
2015-09-10 14:51:14 +08:00
consume_units_with_for_loop(); // should be fine as well
multiline_sugg();
2015-09-10 14:51:14 +08:00
let_and_return!(()) // should be fine
}
2015-09-10 14:51:14 +08:00
// Related to issue #1964
fn consume_units_with_for_loop() {
// `for_let_unit` lint should not be triggered by consuming them using for loop.
let v = vec![(), (), ()];
let mut count = 0;
for _ in v {
count += 1;
}
assert_eq!(count, 3);
// Same for consuming from some other Iterator<Item = ()>.
let (tx, rx) = ::std::sync::mpsc::channel();
tx.send(()).unwrap();
drop(tx);
count = 0;
for _ in rx.iter() {
count += 1;
}
assert_eq!(count, 1);
}
fn multiline_sugg() {
let v: Vec<u8> = vec![2];
let _ = v
.into_iter()
.map(|i| i * 2)
.filter(|i| i % 2 == 0)
.map(|_| ())
.next()
.unwrap();
}
2015-09-10 14:51:14 +08:00
#[derive(Copy, Clone)]
pub struct ContainsUnit(()); // should be fine