2022-01-29 22:15:30 -06:00
|
|
|
fn main() {
|
|
|
|
if let x = x && x {}
|
|
|
|
|
|
|
|
if xxx && let x = x {}
|
|
|
|
|
|
|
|
if aaaaaaaaaaaaaaaaaaaaa && aaaaaaaaaaaaaaa && aaaaaaaaa && let Some(x) = xxxxxxxxxxxx && aaaaaaa && let None = aaaaaaaaaa {}
|
|
|
|
|
2023-10-22 13:30:25 -05:00
|
|
|
if aaaaaaaaaaaaaaaaaaaaa && aaaaaaaaaaaaaaa && aaaaaaaaa && let Some(x) = xxxxxxxxxxxx && aaaaaaa && let None = aaaaaaaaaa {}
|
2022-01-29 22:15:30 -06:00
|
|
|
|
|
|
|
if let Some(Struct { x:TS(1,2) }) = path::to::<_>(hehe)
|
|
|
|
&& let [Simple, people] = /* get ready */ create_universe(/* hi */ GreatPowers).initialize_badminton().populate_swamps() &&
|
2023-10-22 13:30:25 -05:00
|
|
|
let everybody = (Loops { hi /*hi*/ , ..loopy() }) && summons::triumphantly() { todo!() }
|
2022-01-29 22:15:30 -06:00
|
|
|
|
|
|
|
if let XXXXXXXXX { xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx, yyyyyyyyyyyyy, zzzzzzzzzzzzz} = xxxxxxx()
|
|
|
|
&& let Foo = bar() { todo!() }
|
2023-08-07 11:57:20 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn test_single_line_let_chain() {
|
|
|
|
// first item in let-chain is an ident
|
|
|
|
if a && let Some(b) = foo() {
|
|
|
|
}
|
|
|
|
|
|
|
|
// first item in let-chain is a unary ! with an ident
|
|
|
|
let unary_not = if !from_hir_call
|
|
|
|
&& let Some(p) = parent
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
// first item in let-chain is a unary * with an ident
|
|
|
|
let unary_deref = if *some_deref
|
|
|
|
&& let Some(p) = parent
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
// first item in let-chain is a unary - (neg) with an ident
|
|
|
|
let unary_neg = if -some_ident
|
|
|
|
&& let Some(p) = parent
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
// first item in let-chain is a try (?) with an ident
|
|
|
|
let try_ = if some_try?
|
|
|
|
&& let Some(p) = parent
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
// first item in let-chain is an ident wrapped in parens
|
|
|
|
let in_parens = if (some_ident)
|
|
|
|
&& let Some(p) = parent
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
// first item in let-chain is a ref & with an ident
|
|
|
|
let _ref = if &some_ref
|
|
|
|
&& let Some(p) = parent
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
// first item in let-chain is a ref &mut with an ident
|
|
|
|
let mut_ref = if &mut some_ref
|
|
|
|
&& let Some(p) = parent
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
// chain unary ref and try
|
|
|
|
let chain_of_unary_ref_and_try = if !&*some_ref?
|
|
|
|
&& let Some(p) = parent {
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_multi_line_let_chain() {
|
|
|
|
// Can only single line the let-chain if the first item is an ident
|
|
|
|
if let Some(x) = y && a {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// More than one let-chain must be formatted on multiple lines
|
|
|
|
if let Some(x) = y && let Some(a) = b {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// The ident isn't long enough so we don't wrap the first let-chain
|
|
|
|
if a && let Some(x) = y && let Some(a) = b {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// The ident is long enough so both let-chains are wrapped
|
|
|
|
if aaa && let Some(x) = y && let Some(a) = b {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// function call
|
|
|
|
if a() && let Some(x) = y {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// bool literal
|
|
|
|
if true && let Some(x) = y {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// cast to a bool
|
|
|
|
if 1 as bool && let Some(x) = y {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// matches! macro call
|
|
|
|
if matches!(a, some_type) && let Some(x) = y {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// block expression returning bool
|
|
|
|
if { true } && let Some(x) = y {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// field access
|
|
|
|
if a.x && let Some(x) = y {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|