2019-10-17 19:58:08 -05:00
|
|
|
fn by_ref_with_block_before_ident() {
|
|
|
|
if let Some(ref /*def*/ state)= foo{
|
|
|
|
println!(
|
|
|
|
"asdfasdfasdf"); }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn mut_block_before_ident() {
|
|
|
|
if let Some(mut /*def*/ state ) =foo{
|
|
|
|
println!(
|
|
|
|
"123" ); }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn ref_and_mut_blocks_before_ident() {
|
|
|
|
if let Some(ref /*abc*/
|
|
|
|
mut /*def*/ state ) = foo {
|
|
|
|
println!(
|
|
|
|
"deefefefefefwea" ); }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn sub_pattern() {
|
|
|
|
let foo @ /*foo*/
|
|
|
|
bar(f) = 42;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn no_prefix_block_before_ident() {
|
|
|
|
if let Some(
|
|
|
|
/*def*/ state ) = foo {
|
|
|
|
println!(
|
|
|
|
"129387123123" ); }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn issue_3853() {
|
|
|
|
if let Some(ref /*mut*/ state) = foo {
|
|
|
|
}
|
|
|
|
}
|
2019-10-17 20:04:05 -05:00
|
|
|
|
|
|
|
fn double_slash_comment_between_lhs_and_rhs() {
|
|
|
|
if let Some(e) =
|
|
|
|
// self.foo.bar(e, tx)
|
|
|
|
packet.transaction.state.committed
|
|
|
|
{
|
|
|
|
// body
|
|
|
|
println!(
|
|
|
|
"a2304712836123");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn block_comment_between_lhs_and_rhs() {
|
|
|
|
if let Some(ref /*def*/ mut /*abc*/ state)= /*abc*/foo{
|
|
|
|
println!(
|
|
|
|
"asdfasdfasdf"); }
|
|
|
|
}
|