blob: eae59eff94e563a6164bbebd24ef76111a7ccbf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
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 {}
}
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");
}
}
|