|
|
|
|
|
by syn_rst
3104 days ago
|
|
I've run into it before, but it's not usually too serious. It only usually happens on lines with compound expressions or chained calls like this: foo.into_iter().map(|x| x+1)
.filter(|y| y > 2)
My working theory is that it's related to situations where there's multiple statements on the same source line (or inside a block inside a lambda). |
|