summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/src/docs/unseparated_literal_suffix.txt
blob: d80248e34d0c7f880b429fd21fdbdde0e5b0127a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
### What it does
Warns if literal suffixes are not separated by an
underscore.
To enforce unseparated literal suffix style,
see the `separated_literal_suffix` lint.

### Why is this bad?
Suffix style should be consistent.

### Example
```
123832i32
```

Use instead:
```
123832_i32
```