]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/src/docs/unnecessary_operation.txt
Rollup merge of #101389 - lukaslueg:rcgetmutdocs, r=m-ou-se
[rust.git] / src / tools / clippy / src / docs / unnecessary_operation.txt
1 ### What it does
2 Checks for expression statements that can be reduced to a
3 sub-expression.
4
5 ### Why is this bad?
6 Expressions by themselves often have no side-effects.
7 Having such expressions reduces readability.
8
9 ### Example
10 ```
11 compute_array()[0];
12 ```