mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-30 15:55:59 +00:00
Placeholders are still given for the content of the whole block. However, if the result of the original `if let` or `match` expression was assigned, the assignment is reflected in the suggestion. No-op assignments (`let x = x;`) are skipped though, unless they contain an explicit type which might help the compiler (`let x: u32 = x;` is kept).
243 lines
4.6 KiB
Rust
243 lines
4.6 KiB
Rust
#![warn(clippy::while_let_loop)]
|
|
#![allow(clippy::uninlined_format_args)]
|
|
//@no-rustfix
|
|
fn main() {
|
|
let y = Some(true);
|
|
loop {
|
|
//~^ while_let_loop
|
|
|
|
if let Some(_x) = y {
|
|
let _v = 1;
|
|
} else {
|
|
break;
|
|
}
|
|
}
|
|
|
|
#[allow(clippy::never_loop)]
|
|
loop {
|
|
// no error, break is not in else clause
|
|
if let Some(_x) = y {
|
|
let _v = 1;
|
|
}
|
|
break;
|
|
}
|
|
|
|
loop {
|
|
//~^ while_let_loop
|
|
|
|
match y {
|
|
Some(_x) => true,
|
|
None => break,
|
|
};
|
|
}
|
|
|
|
loop {
|
|
//~^ while_let_loop
|
|
|
|
let x = match y {
|
|
Some(x) => x,
|
|
None => break,
|
|
};
|
|
let _x = x;
|
|
let _str = "foo";
|
|
}
|
|
|
|
loop {
|
|
//~^ while_let_loop
|
|
|
|
let x = match y {
|
|
Some(x) => x,
|
|
None => break,
|
|
};
|
|
{
|
|
let _a = "bar";
|
|
};
|
|
{
|
|
let _b = "foobar";
|
|
}
|
|
}
|
|
|
|
loop {
|
|
// no error, else branch does something other than break
|
|
match y {
|
|
Some(_x) => true,
|
|
_ => {
|
|
let _z = 1;
|
|
break;
|
|
},
|
|
};
|
|
}
|
|
|
|
while let Some(x) = y {
|
|
// no error, obviously
|
|
println!("{}", x);
|
|
}
|
|
|
|
// #675, this used to have a wrong suggestion
|
|
loop {
|
|
//~^ while_let_loop
|
|
|
|
let (e, l) = match "".split_whitespace().next() {
|
|
Some(word) => (word.is_empty(), word.len()),
|
|
None => break,
|
|
};
|
|
|
|
let _ = (e, l);
|
|
}
|
|
}
|
|
|
|
fn issue771() {
|
|
let mut a = 100;
|
|
let b = Some(true);
|
|
loop {
|
|
if a > 10 {
|
|
break;
|
|
}
|
|
|
|
match b {
|
|
Some(_) => a = 0,
|
|
None => break,
|
|
}
|
|
}
|
|
}
|
|
|
|
fn issue1017() {
|
|
let r: Result<u32, u32> = Ok(42);
|
|
let mut len = 1337;
|
|
|
|
loop {
|
|
match r {
|
|
Err(_) => len = 0,
|
|
Ok(length) => {
|
|
len = length;
|
|
break;
|
|
},
|
|
}
|
|
}
|
|
}
|
|
|
|
#[allow(clippy::never_loop)]
|
|
fn issue1948() {
|
|
// should not trigger clippy::while_let_loop lint because break passes an expression
|
|
let a = Some(10);
|
|
let b = loop {
|
|
if let Some(c) = a {
|
|
break Some(c);
|
|
} else {
|
|
break None;
|
|
}
|
|
};
|
|
}
|
|
|
|
fn issue_7913(m: &std::sync::Mutex<Vec<u32>>) {
|
|
// Don't lint. The lock shouldn't be held while printing.
|
|
loop {
|
|
let x = if let Some(x) = m.lock().unwrap().pop() {
|
|
x
|
|
} else {
|
|
break;
|
|
};
|
|
|
|
println!("{}", x);
|
|
}
|
|
}
|
|
|
|
fn issue_5715(mut m: core::cell::RefCell<Option<u32>>) {
|
|
// Don't lint. The temporary from `borrow_mut` must be dropped before overwriting the `RefCell`.
|
|
loop {
|
|
let x = if let &mut Some(x) = &mut *m.borrow_mut() {
|
|
x
|
|
} else {
|
|
break;
|
|
};
|
|
|
|
m = core::cell::RefCell::new(Some(x + 1));
|
|
}
|
|
}
|
|
|
|
mod issue_362 {
|
|
pub fn merge_sorted<T>(xs: Vec<T>, ys: Vec<T>) -> Vec<T>
|
|
where
|
|
T: PartialOrd,
|
|
{
|
|
let total_len = xs.len() + ys.len();
|
|
let mut res = Vec::with_capacity(total_len);
|
|
let mut ix = xs.into_iter().peekable();
|
|
let mut iy = ys.into_iter().peekable();
|
|
loop {
|
|
//~^ while_let_loop
|
|
let lt = match (ix.peek(), iy.peek()) {
|
|
(Some(x), Some(y)) => x < y,
|
|
_ => break,
|
|
};
|
|
res.push(if lt { &mut ix } else { &mut iy }.next().unwrap());
|
|
}
|
|
res.extend(ix);
|
|
res.extend(iy);
|
|
res
|
|
}
|
|
}
|
|
|
|
fn let_assign() {
|
|
loop {
|
|
//~^ while_let_loop
|
|
let x = if let Some(y) = Some(3) {
|
|
y
|
|
} else {
|
|
break;
|
|
};
|
|
if x == 3 {
|
|
break;
|
|
}
|
|
}
|
|
|
|
loop {
|
|
//~^ while_let_loop
|
|
let x: u32 = if let Some(y) = Some(3) {
|
|
y
|
|
} else {
|
|
break;
|
|
};
|
|
if x == 3 {
|
|
break;
|
|
}
|
|
}
|
|
|
|
loop {
|
|
//~^ while_let_loop
|
|
let x = if let Some(x) = Some(3) {
|
|
x
|
|
} else {
|
|
break;
|
|
};
|
|
if x == 3 {
|
|
break;
|
|
}
|
|
}
|
|
|
|
loop {
|
|
//~^ while_let_loop
|
|
let x: u32 = if let Some(x) = Some(3) {
|
|
x
|
|
} else {
|
|
break;
|
|
};
|
|
if x == 3 {
|
|
break;
|
|
}
|
|
}
|
|
|
|
loop {
|
|
//~^ while_let_loop
|
|
let x = if let Some(x) = Some(2) {
|
|
let t = 1;
|
|
t + x
|
|
} else {
|
|
break;
|
|
};
|
|
if x == 3 {
|
|
break;
|
|
}
|
|
}
|
|
}
|