]> git.lizzy.rs Git - rust.git/blob - src/docs/let_unit_value.txt
Add iter_kv_map lint
[rust.git] / src / docs / let_unit_value.txt
1 ### What it does
2 Checks for binding a unit value.
3
4 ### Why is this bad?
5 A unit value cannot usefully be used anywhere. So
6 binding one is kind of pointless.
7
8 ### Example
9 ```
10 let x = {
11     1;
12 };
13 ```